diff --git a/Notes.md b/Notes.md index c970028..3956c41 100644 --- a/Notes.md +++ b/Notes.md @@ -1,8 +1,3 @@ -Version numbers ---------------- - - $ bump *.json nprogress.js - Testing ------- @@ -20,18 +15,11 @@ Testing component build $ component build $ open test/component.html -Pushing -------- - - $ git push origin master - Releasing --------- -Tag and stuff (`git release`), then: - - $ git push origin master:gh-pages - -And publish to npm: - - $ npm publish + $ npm test + $ bump *.json nprogress.js # bump version numbers + $ git release 0.1.1 # release to bower/github + $ npm publish # release to npm + $ git push origin master:gh-pages # update the site diff --git a/bower.json b/bower.json index 0ce5016..3b9fae8 100644 --- a/bower.json +++ b/bower.json @@ -2,7 +2,7 @@ "name": "nprogress", "repo": "rstacruz/nprogress", "description": "slim progress bar", - "version": "0.1.4", + "version": "0.1.5", "keywords": [ "progress", "bar", diff --git a/component.json b/component.json index 6bacf3e..a2c1745 100644 --- a/component.json +++ b/component.json @@ -2,7 +2,7 @@ "name": "nprogress", "repo": "rstacruz/nprogress", "description": "slim progress bar", - "version": "0.1.4", + "version": "0.1.5", "keywords": ["progress","bar","spinner"], "dependencies": { "component/jQuery": "*" diff --git a/nprogress.js b/nprogress.js index 8223128..2d6d590 100644 --- a/nprogress.js +++ b/nprogress.js @@ -14,7 +14,7 @@ })(function() { var NProgress = {}; - NProgress.version = '0.1.4'; + NProgress.version = '0.1.5'; var Settings = NProgress.settings = { minimum: 0.08, diff --git a/package.json b/package.json index 4171c2f..8b0ebbb 100644 --- a/package.json +++ b/package.json @@ -2,10 +2,10 @@ "name": "nprogress", "author": "Rico Sta. Cruz ", "description": "Simple slim progress bars", - "version": "0.1.4", + "version": "0.1.5", "repository": { - "type": "git", - "url": "https://github.com/rstacruz/nprogress.git" + "type": "git", + "url": "https://github.com/rstacruz/nprogress.git" }, "scripts": { "test": "./node_modules/.bin/mocha -R spec" @@ -16,5 +16,6 @@ "chai": "~1.6.1", "mocha": "~1.11.0", "jsdom": "~0.6.5" - } + }, + "dependencies": {} }