From b271c550543b12790d704be9881fc0750926c5ee Mon Sep 17 00:00:00 2001 From: sawka Date: Sat, 10 Feb 2024 19:41:23 -0300 Subject: [PATCH] bump to v0.6.2 --- .github/workflows/build-helper.yml | 2 +- buildres/build-universal.sh | 2 +- package.json | 2 +- version.js | 2 +- wavesrv/pkg/scbase/scbase.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-helper.yml b/.github/workflows/build-helper.yml index f128bf017..b0a057c11 100644 --- a/.github/workflows/build-helper.yml +++ b/.github/workflows/build-helper.yml @@ -1,7 +1,7 @@ name: "Build Helper" on: workflow_dispatch env: - WAVETERM_VERSION: 0.6.1 + WAVETERM_VERSION: 0.6.2 GO_VERSION: "1.21.5" NODE_VERSION: "21.5.0" jobs: diff --git a/buildres/build-universal.sh b/buildres/build-universal.sh index 29608c38d..95843691f 100644 --- a/buildres/build-universal.sh +++ b/buildres/build-universal.sh @@ -1,7 +1,7 @@ #!/bin/bash # assumes we have Wave-darwin-x64-[version].zip and Wave-darwin-arm64-[version].zip in current directory -VERSION=0.6.1 +VERSION=0.6.2 rm -rf temp rm -rf builds mkdir temp diff --git a/package.json b/package.json index a633e9b22..7f43b72ca 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "waveterm", "author": "Command Line Inc", "productName": "Wave", - "version": "0.6.1", + "version": "0.6.2", "main": "dist/emain.js", "license": "Apache-2.0", "dependencies": { diff --git a/version.js b/version.js index a719391eb..10cce1fb8 100644 --- a/version.js +++ b/version.js @@ -1,2 +1,2 @@ -const VERSION = "v0.6.1"; +const VERSION = "v0.6.2"; module.exports = VERSION; diff --git a/wavesrv/pkg/scbase/scbase.go b/wavesrv/pkg/scbase/scbase.go index bc9ab45ba..951510972 100644 --- a/wavesrv/pkg/scbase/scbase.go +++ b/wavesrv/pkg/scbase/scbase.go @@ -35,7 +35,7 @@ const WaveLockFile = "waveterm.lock" const WaveDirName = ".waveterm" // must match emain.ts const WaveDevDirName = ".waveterm-dev" // must match emain.ts const WaveAppPathVarName = "WAVETERM_APP_PATH" -const WaveVersion = "v0.6.1" +const WaveVersion = "v0.6.2" const WaveAuthKeyFileName = "waveterm.authkey" const MShellVersion = "v0.4.0"