Skip to content

Commit bbbb470

Browse files
author
Sung Won Cho
committedJun 5, 2016
0.2.0
1 parent fd30444 commit bbbb470

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed
 

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ const NotLoggedInMessage = (
8888

8989
## Production ready
9090

91-
![](https://cldup.com/QUydmNJ7Ea.gif)
92-
93-
`meteor-auth` is being used in [RemoteBase](https://remotebase.io) to serve
91+
We are using `meteor-auth` in [RemoteBase](https://remotebase.io) to serve
9492
actual users.
9593

94+
![](https://cldup.com/QUydmNJ7Ea.gif)
95+
9696

9797
## License
9898

‎RELEASE_NOTE.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# 0.2.0 (June 5 2016)
2+
3+
* Add `EnsureLoggedIn` component
4+
5+
# 0.1.1 (March 28 2016)
6+
7+
* Build with babel
8+
9+
# 0.1.0 (March 28 2016)
10+
11+
* Initial release

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meteor-auth",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "A reusable composer to implement authentication for Mantra applications",
55
"main": "./dist/index.js",
66
"scripts": {

‎release.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version="$1"
2+
3+
if [ -z "$1" ]; then
4+
echo "Please specify the version number. e.g. 0.3.1"
5+
echo "Do not include the leading 'v'."
6+
exit 1
7+
fi
8+
9+
git commit -m "$1"
10+
git tag -a v"$1" -m "See RELEASE_NOTE.md for changes"
11+
git push --follow-tags
12+
npm publish

0 commit comments

Comments
 (0)
Please sign in to comment.