From 7a35ed11a72364f1d01ce9c787f68cd919b8c465 Mon Sep 17 00:00:00 2001 From: Tilt Dev Date: Wed, 9 Feb 2022 00:01:06 +0000 Subject: [PATCH] Update version numbers: 0.24.1 --- 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 54e2eb2ec9..2ffccaa2f8 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.24.0" +const devVersion = "0.24.1" var commitSHA string var globalTiltInfo model.TiltBuild diff --git a/scripts/install.ps1 b/scripts/install.ps1 index d8ef556bf7..a4dac6260f 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.24.0" +$version = "0.24.1" $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 16fbd4fd37..dd1bab652a 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.24.0" +VERSION="0.24.1" BREW=$(command -v brew) set -e