diff --git a/.ci/cross-release.yml b/.ci/cross-release.yml index 302e66a6..f726d1f0 100644 --- a/.ci/cross-release.yml +++ b/.ci/cross-release.yml @@ -27,7 +27,7 @@ steps: displayName: "npm pack" workingDirectory: "_release" - - bash: "node .ci/checksum.js _release/pesy-0.5.0-alpha.7.tgz" + - bash: "node .ci/checksum.js _release/pesy-0.1.0-alpha.3.tgz" displayName: "Calculating sha1" - task: PublishBuildArtifacts@1 diff --git a/bin/Pesy.re b/bin/Pesy.re index 02069f7b..bfd9b37d 100644 --- a/bin/Pesy.re +++ b/bin/Pesy.re @@ -254,7 +254,7 @@ let pesyLsLibs = () => { pkgs, ); }; -let version = "0.5.0-alpha.7"; +let version = "0.1.0-alpha.3"; let cmd = () => { open Cmdliner.Term; diff --git a/e2e-tests/Runner.re b/e2e-tests/Runner.re index 2685de93..877fbe80 100644 --- a/e2e-tests/Runner.re +++ b/e2e-tests/Runner.re @@ -32,7 +32,7 @@ run(makeCommand("npm"), [|"install"|]); run(makeCommand("npm"), [|"run", "build"|]); run(makeCommand("npm"), [|"run", "rollup"|]); run(makeCommand("npm"), [|"pack"|]); -run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.7.tgz"|]); +run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.8.tgz"|]); chdir(cwd); let testBootstrapperExe = diff --git a/npm-cli/package-lock.json b/npm-cli/package-lock.json index 0fd35515..6f0741ee 100644 --- a/npm-cli/package-lock.json +++ b/npm-cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "pesy", - "version": "0.5.0-alpha.7", + "version": "0.5.0-alpha.8", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/npm-cli/package.json b/npm-cli/package.json index ac6efc8e..25fa213f 100644 --- a/npm-cli/package.json +++ b/npm-cli/package.json @@ -1,6 +1,6 @@ { "name": "pesy", - "version": "0.5.0-alpha.7", + "version": "0.5.0-alpha.8", "bin": { "pesy": "pesy" }, diff --git a/package.json b/package.json index 894398d5..af8a0522 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pesy/esy-pesy", - "version": "0.1.0-alpha.2", + "version": "0.1.0-alpha.3", "description": "\"Esy Pesy\" - Your Esy Assistant.", "esy": { "buildsInSource": "_build", diff --git a/pesy--esy-pesy.opam b/pesy--esy-pesy.opam index 87e09d1f..1abbce9f 100644 --- a/pesy--esy-pesy.opam +++ b/pesy--esy-pesy.opam @@ -2,7 +2,7 @@ opam-version: "2.0" name: "pesy" description: "Esy Pesy - Your Esy Assistant" synopsis: "Esy Pesy - Your Esy Assistant" -version: "0.5.0-alpha.7" +version: "0.1.0-alpha.3" maintainer: "Jordan Walke" authors: [ "Jordan Walke" diff --git a/scripts/run.bat b/scripts/run.bat index 49cc11b3..cf23f413 100644 --- a/scripts/run.bat +++ b/scripts/run.bat @@ -2,6 +2,6 @@ call esy build call esy npm-release call cd _release call npm pack -call npm install -g ./pesy-0.5.0-alpha.7.tgz +call npm install -g ./pesy-0.5.0-alpha.8.tgz call cd .. call .\_build\install\default\bin\TestPesyConfigure.exe diff --git a/scripts/run.sh b/scripts/run.sh index a3564d38..bb4e0b3c 100755 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -6,7 +6,7 @@ root=$PWD custom_registry_url=http://localhost:4873 original_npm_registry_url=https://registry.npmjs.org # `npm get registry` original_yarn_registry_url=https://registry.yarnpkg.com # `yarn config get registry` -version=0.5.0-alpha.7 +version=0.5.0-alpha.8 function cleanup {