Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
wopian committed Jul 6, 2017
1 parent 046f3ab commit c9422a3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
#### 1.0.2 (2017-07-06)

##### Chores

* add npm publish to release command ([d23c4fa0](https://github.com/wopian/kitsu/commit/d23c4fa0348190777bb5ba1d350ba7ee771a4dac))
* improve release commit message ([d06e5ff3](https://github.com/wopian/kitsu/commit/d06e5ff350bb7c6ffdb893dee238439dc0b41ea2))

##### New Features

* check if console exists before logging ([046f3ab6](https://github.com/wopian/kitsu/commit/046f3ab6b63092f24fdaae017363cfc923950b24))

#### 1.0.1 (2017-07-06)

##### Build System / Dependencies
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"build": "yarn run docs && yarn run rollup && yarn run uglify",
"release:build": "jest && yarn run build",
"release:push": "git push origin && git push origin --tags && npm publish && git stash pop",
"release:commit": "git add package.json && git add DOCS.md && git add CHANGELOG.md && git commit -m \"release: bump version\" && git stash",
"release:major": "yarn run release:build && changelog -M -x release && yarn run release:commit && npm version major && yarn run release:push",
"release:minor": "yarn run release:build && changelog -m -x release && yarn run release:commit && npm version minor && yarn run release:push",
"release:patch": "yarn run release:build && changelog -p -x release && yarn run release:commit && npm version patch && yarn run release:push",
"release:commit": "git add package.json && git add DOCS.md && git add CHANGELOG.md && git commit -m \"bump version\" && git stash",
"release:major": "yarn run release:build && changelog -M && yarn run release:commit && npm version major && yarn run release:push",
"release:minor": "yarn run release:build && changelog -m && yarn run release:commit && npm version minor && yarn run release:push",
"release:patch": "yarn run release:build && changelog -p && yarn run release:commit && npm version patch && yarn run release:push",
"rollup": "cross-env NODE_ENV=production rollup -c --environment BUILD:production",
"uglify": "uglifyjs lib/kitsu.js -c -m -o lib/kitsu.js && uglifyjs lib/kitsu.mjs -c -m -o lib/kitsu.mjs",
"start": "yarn run example:basic",
Expand Down

0 comments on commit c9422a3

Please sign in to comment.