Skip to content

Commit 0723c12

Browse files
Merge pull request #60 from jesusoterogomez/rel/0.5.0
Rel/0.5.0
2 parents b66b060 + 13cad9c commit 0723c12

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ after_deploy:
2424
git config --global user.email "[email protected]";
2525
git config --global user.name "Travis CI";
2626
export GIT_TAG=$PACKAGE_VERSION;
27-
git tag $GIT_TAG -a -m "Generated tag from TravisCI build $PACKAGE_VERSION";
28-
git push origin $GIT_TAG;
27+
git tag $GIT_TAG -a -m "Generated tag from TravisCI build $TRAVIS_BUILD_NUMBER";
28+
git push --quiet https://$GH_TOKEN@GIT_URL > /dev/null 2>&1 ; # prevent key from being printed to logs
2929
fi
3030
branches:
3131
except:

CHANGELOG.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66
### Added
7+
8+
### Changed
9+
10+
### Fixed
11+
12+
## [0.5.0] - 2018-05-26
13+
### Added
714
- [\#58] Support for setting vertical offset by specifying `top` as a default option.
815
```js
916
// Example
1017
<Notification options={{top: '50px'}}/>
1118
```
1219

13-
### Changed
14-
15-
### Fixed
16-
1720
## [0.4.1] - 2018-05-16
1821
### Changed
1922
- [\#55] Support react 16 as a peer dependency
@@ -66,7 +69,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
6669

6770
[comment]: # (Build Comparison Links)
6871

69-
[unreleased]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.4.1...HEAD
72+
[unreleased]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.5.0...HEAD
73+
[0.5.0]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.4.1...0.5.0
7074
[0.4.1]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.4.0...0.4.1
7175
[0.4.0]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.3.2...0.4.0
7276
[0.3.2]: https://github.com/jesusoterogomez/react-notify-toast/compare/0.3.1...0.3.2

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-notify-toast",
33
"title": "React Notify Toast",
4-
"version": "0.4.1",
4+
"version": "0.5.0",
55
"description": "Toast notifications for React.js",
66
"keywords": [
77
"react",

0 commit comments

Comments
 (0)