Skip to content

Commit

Permalink
chore: release v0.11.0 (#461)
Browse files Browse the repository at this point in the history
* chore: release v0.11.0

* docs: update CHANGELOG.md
  • Loading branch information
Eunjae Lee committed Nov 28, 2019
1 parent b5066fa commit 55782bc
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 9 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# [0.11.0](https://github.com/algolia/shipjs/compare/v0.10.0...v0.11.0) (2019-11-27)

### NOTICE

From `0.11.0`, `GITHUB_TOKEN` is required as an environment variable for Ship.js to work.

Please refer to [the guide](./GUIDE.md#github-token).

### Bug Fixes

* check if origin-with-token already exists on prepare command ([#455](https://github.com/algolia/shipjs/issues/455)) ([ce296a6](https://github.com/algolia/shipjs/commit/ce296a6))
* create github release with rest api instead of hub ([#458](https://github.com/algolia/shipjs/issues/458)) ([0bfeda6](https://github.com/algolia/shipjs/commit/0bfeda6))
* create pull request with rest api instead of hub ([#456](https://github.com/algolia/shipjs/issues/456)) ([9423f11](https://github.com/algolia/shipjs/commit/9423f11))
* guide users to have GITHUB_TOKEN ([#460](https://github.com/algolia/shipjs/issues/460)) ([b3ae436](https://github.com/algolia/shipjs/commit/b3ae436))
* remove hub ([#459](https://github.com/algolia/shipjs/issues/459)) ([cfd4b2f](https://github.com/algolia/shipjs/commit/cfd4b2f))


### Features

* add support for scoped packages ([#451](https://github.com/algolia/shipjs/issues/451)) ([765cade](https://github.com/algolia/shipjs/commit/765cade))



# [0.10.0](https://github.com/algolia/shipjs/compare/v0.9.0...v0.10.0) (2019-11-26)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.10.0",
"version": "0.11.0",
"npmClient": "yarn",
"useWorkspaces": true
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.10.0",
"version": "0.11.0",
"description": "",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -29,4 +29,4 @@
"all-contributors-cli": "6.11.1",
"lerna": "3.19.0"
}
}
}
2 changes: 1 addition & 1 deletion packages/shipjs-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shipjs-lib",
"version": "0.10.0",
"version": "0.11.0",
"description": "Take control of what is going to be your next release.",
"main": "dist/index.esm.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shipjs-lib/src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '0.10.0';
export default '0.11.0';
6 changes: 3 additions & 3 deletions packages/shipjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shipjs",
"version": "0.10.0",
"version": "0.11.0",
"description": "Take control of what is going to be your next release.",
"main": "index.js",
"bin": {
Expand Down Expand Up @@ -51,7 +51,7 @@
"prettier": "^1.18.2",
"serialize-javascript": "^2.1.0",
"shell-quote": "^1.7.2",
"shipjs-lib": "0.10.0",
"shipjs-lib": "0.11.0",
"temp-write": "4.0.0"
},
"devDependencies": {
Expand All @@ -70,4 +70,4 @@
"jest": "24.9.0",
"jest-watch-typeahead": "0.4.2"
}
}
}
2 changes: 1 addition & 1 deletion packages/shipjs/src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '0.10.0';
export default '0.11.0';

0 comments on commit 55782bc

Please sign in to comment.