Skip to content

Commit

Permalink
Bump alpha to 0.5.0-alpha.5 (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
ManasJayanth authored Sep 10, 2019
1 parent c267d12 commit 0e7dbac
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bin/Pesy.re
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ let pesy_build = () =>
)
);

let version = "0.5.0-alpha.4";
let version = "0.5.0-alpha.5";

let cmd = () => {
open Cmdliner.Term;
Expand Down
13 changes: 6 additions & 7 deletions e2e-tests/Runner.re
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ chdir(Path.(cwd / "npm-cli"));
print_endline("Installing pesy globally..");
run(makeCommand("npm"), [|"run", "rollup"|]);
run(makeCommand("npm"), [|"pack"|]);
run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.4.tgz"|]);
run(makeCommand("npm"), [|"i", "-g", "./pesy-0.5.0-alpha.5.tgz"|]);
chdir(cwd);

let testBootstrapperExe =
Expand All @@ -53,13 +53,12 @@ exit(
[||],
~env=
Array.append(
[|sprintf("PESY_CLONE_PATH=%s",
Str.global_replace(
Str.regexp("\\"),
"/",
Sys.getcwd(),
[|
sprintf(
"PESY_CLONE_PATH=%s",
Str.global_replace(Str.regexp("\\"), "/", Sys.getcwd()),
),
)|],
|],
Unix.environment(),
),
),
Expand Down
2 changes: 1 addition & 1 deletion npm-cli/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion npm-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pesy",
"version": "0.5.0-alpha.4",
"version": "0.5.0-alpha.5",
"bin": {
"pesy": "pesy"
},
Expand Down
4 changes: 2 additions & 2 deletions npm-cli/src/Spinner.bs.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pesy",
"version": "0.5.0-alpha.4",
"version": "0.5.0-alpha.5",
"description": "\"Esy Pesy\" - Your Esy Assistant.",
"esy": {
"buildsInSource": "_build",
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.4
version=0.5.0-alpha.5

function cleanup {

Expand Down

0 comments on commit 0e7dbac

Please sign in to comment.