Skip to content

Commit

Permalink
Prepare alpha 8 build (#64)
Browse files Browse the repository at this point in the history
* Use correct version for esy-pesy in the cmdliner options

* Release: Bump esy-pesy 0.1.0-alpha.3

* Fix incorrect version in opam file

* Release: Bump pesy (npm cli) to 0.5.0-alpha.8
  • Loading branch information
ManasJayanth authored Sep 29, 2019
1 parent 4661656 commit a694fd4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .ci/cross-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bin/Pesy.re
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/Runner.re
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
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.7",
"version": "0.5.0-alpha.8",
"bin": {
"pesy": "pesy"
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pesy--esy-pesy.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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<jordojw@gmail.com>"
authors: [
"Jordan Walke<jordojw@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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
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.7
version=0.5.0-alpha.8

function cleanup {

Expand Down

0 comments on commit a694fd4

Please sign in to comment.