diff --git a/.appveyor.yml b/.appveyor.yml index 8d8bce10b..852c8f3f2 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -75,4 +75,4 @@ deploy: provider: GitHub on: branch: master - # appveyor_repo_tag: true + appveyor_repo_tag: true diff --git a/scripts/update_version_numbers.sh b/scripts/update_version_numbers.sh index 9108a3e31..217784810 100755 --- a/scripts/update_version_numbers.sh +++ b/scripts/update_version_numbers.sh @@ -5,6 +5,9 @@ NEXT_VERSION='0.6.0' fd Cargo.toml --exec sed -i '' "s/version = \"$PREVIOUS_VERSION\"/version = \"$NEXT_VERSION\"/" echo "manually check changes to Cargo.toml" +fd wasmer.iss --exec sed -i '' "s/AppVersion=$PREVIOUS_VERSION/AppVersion=$NEXT_VERSION/" +echo "manually check changes to wasmer.iss" + # Order to upload packages in ## runtime-core ## win-exception-handler diff --git a/src/installer/wasmer.iss b/src/installer/wasmer.iss index 16a396593..98e0c858f 100644 --- a/src/installer/wasmer.iss +++ b/src/installer/wasmer.iss @@ -1,6 +1,6 @@ [Setup] AppName=Wasmer -AppVersion=0.4.0 +AppVersion=0.6.0 DefaultDirName={pf}\Wasmer DefaultGroupName=Wasmer Compression=lzma2 @@ -82,4 +82,4 @@ begin EnvRemovePath(ExpandConstant('{app}') +'\bin'); EnvAddPath(ExpandConstant('{%USERPROFILE}') +'\globals\wapm_packages\.bin'); end -end; \ No newline at end of file +end;