Skip to content

Commit

Permalink
Fix CHANGELOG generation
Browse files Browse the repository at this point in the history
  • Loading branch information
amalv committed Feb 8, 2019
1 parent 84d7453 commit 39cc564
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [v0.8.1](https://github.com/amalv/react-universal/tree/v0.8.1) (2019-02-08)
[Full Changelog](https://github.com/amalv/react-universal/compare/v0.8.0...v0.8.1)

## [v0.8.0](https://github.com/amalv/react-universal/tree/v0.8.0) (2019-02-08)
[Full Changelog](https://github.com/amalv/react-universal/compare/v0.7.0...v0.8.0)

**Merged pull requests:**

- Add github changelog generator [\#19](https://github.com/amalv/react-universal/pull/19) ([amalv](https://github.com/amalv))

## [v0.7.0](https://github.com/amalv/react-universal/tree/v0.7.0) (2019-02-07)
[Full Changelog](https://github.com/amalv/react-universal/compare/v0.6.0...v0.7.0)

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "react-universal",
"version": "0.8.0",
"version": "0.8.1",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "jest --coverage",
"preversion": "yarn test && yarn changelog && git add . && git commit && echo \"Running tests and generating changelog for version $npm_package_version...\"",
"postversion": "git fetch && git rebase -i origin/master && git push --tags && echo \"Successfully released version $npm_package_version!\"",
"preversion": "yarn test && echo \"Running tests for version $npm_package_version...\"",
"postversion": "git push --tags && yarn changelog && git add . && git commit && git fetch && git rebase -i origin/master && echo \"Successfully released version $npm_package_version!\"",
"changelog": "github_changelog_generator amalv/react-universal",
"build": "webpack -p --config=webpack.prod.js",
"server": "node index.js",
Expand Down

0 comments on commit 39cc564

Please sign in to comment.