From f73fc30d0d6709830bc7a70d7bf1194287f2071e Mon Sep 17 00:00:00 2001 From: Tilt Dev Date: Mon, 17 Apr 2023 18:55:32 +0000 Subject: [PATCH] Update version numbers: 0.32.2 --- internal/cli/build.go | 2 +- scripts/install.ps1 | 2 +- scripts/install.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/cli/build.go b/internal/cli/build.go index 001aef159b..c3e89d6533 100644 --- a/internal/cli/build.go +++ b/internal/cli/build.go @@ -17,7 +17,7 @@ import ( // For distributed binaries, version is automatically baked // into the binary with goreleaser. If this doesn't get updated // on every release, it's often not that big a deal. -const devVersion = "0.32.1" +const devVersion = "0.32.2" var commitSHA string var globalTiltInfo model.TiltBuild diff --git a/scripts/install.ps1 b/scripts/install.ps1 index f45dcb8e2e..e452135af4 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -3,7 +3,7 @@ # Usage: # iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.ps1') -$version = "0.32.1" +$version = "0.32.2" $url = "https://github.com/tilt-dev/tilt/releases/download/v" + $version + "/tilt." + $version + ".windows.x86_64.zip" $zip = "tilt-" + $version + ".zip" $extractDir = "tilt-" + $version diff --git a/scripts/install.sh b/scripts/install.sh index 06587ce647..84ac4203f6 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -7,7 +7,7 @@ # When releasing Tilt, the releaser should update this version number # AFTER they upload new binaries. -VERSION="0.32.1" +VERSION="0.32.2" BREW=$(command -v brew) set -e