File tree 4 files changed +27
-4
lines changed
4 files changed +27
-4
lines changed Original file line number Diff line number Diff line change @@ -88,11 +88,11 @@ const NotLoggedInMessage = (
88
88
89
89
## Production ready
90
90
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
94
92
actual users.
95
93
94
+ ![ ] ( https://cldup.com/QUydmNJ7Ea.gif )
95
+
96
96
97
97
## License
98
98
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " meteor-auth" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.2.0 " ,
4
4
"description" : " A reusable composer to implement authentication for Mantra applications" ,
5
5
"main" : " ./dist/index.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments