Skip to content

Commit

Permalink
Merge pull request #60 from jesusoterogomez/rel/0.5.0
Browse files Browse the repository at this point in the history
Rel/0.5.0
  • Loading branch information
jesusoterogomez authored May 26, 2018
2 parents b66b060 + 13cad9c commit 0723c12
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ after_deploy:
git config --global user.email "[email protected]";
git config --global user.name "Travis CI";
export GIT_TAG=$PACKAGE_VERSION;
git tag $GIT_TAG -a -m "Generated tag from TravisCI build $PACKAGE_VERSION";
git push origin $GIT_TAG;
git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER";
git push --quiet https://$GH_TOKEN@GIT_URL > /dev/null 2>&1 ; # prevent key from being printed to logs
fi
branches:
except:
Expand Down
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Added

### Changed

### Fixed

## [0.5.0] - 2018-05-26
### Added
- [\#58] Support for setting vertical offset by specifying `top` as a default option.
```js
// Example
<Notification options={{top: '50px'}}/>
```

### Changed

### Fixed

## [0.4.1] - 2018-05-16
### Changed
- [\#55] Support react 16 as a peer dependency
Expand Down Expand Up @@ -66,7 +69,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).

[comment]: # (Build Comparison Links)

[unreleased]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.4.1...HEAD
[unreleased]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.5.0...HEAD
[0.5.0]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.4.1...0.5.0
[0.4.1]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.3.2...0.4.0
[0.3.2]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.3.1...0.3.2
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-notify-toast",
"title": "React Notify Toast",
"version": "0.4.1",
"version": "0.5.0",
"description": "Toast notifications for React.js",
"keywords": [
"react",
Expand Down

0 comments on commit 0723c12

Please sign in to comment.