diff --git a/.travis.yml b/.travis.yml index 8f978da38b677eada03c9b1a4757f934946af23d..1c446ef273fa30e145f66a784a7a197d7a7f3b04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,5 @@ language: node_js script: make test -before_deploy: -- npm-prepublish --verbose --lax deploy: provider: npm email: matt@mattandre.ws diff --git a/MAINTAINING.md b/MAINTAINING.md index 5d89e0bfb2b48483fffdeb06f31ff23bf197d997..0082ab34b532b6fd8b7c9546767ed8bdd10ea903 100644 --- a/MAINTAINING.md +++ b/MAINTAINING.md @@ -10,15 +10,18 @@ minor version "1.x.x" bump is in order. To prepare the release commit: -1. Edit the npm [package.json](https://github.com/github/fetch/blob/master/package.json) +1. Edit the [bower.json](https://github.com/github/fetch/blob/master/bower.json) `version` value. -2. Make a single commit with the description as "Fetch 1.x.x". -3. Finally, tag the commit with `v1.x.x`. +2. Change the npm [package.json](https://github.com/github/fetch/blob/master/package.json) +`version` value to match. +3. Make a single commit with the description as "Fetch 1.x.x". +4. Finally, tag the commit with `v1.x.x`. ``` $ git pull +$ vim bower.json $ vim package.json -$ git add package.json +$ git add bower.json package.json $ git commit -m "Fetch 1.x.x" $ git tag v1.x.x $ git push diff --git a/bower.json b/bower.json index ae7bde23160361e43a9d833367965a95c6af9bf9..a7ef8300c142e21d12fb2945493c3541fe3aa169 100644 --- a/bower.json +++ b/bower.json @@ -1,5 +1,6 @@ { "name": "fetch", + "version": "0.4.0", "main": "fetch.js", "devDependencies": { "es6-promise": "1.0.0" diff --git a/package.json b/package.json index 14d19e15e31564479b346b2603ba3506cb3a6d41..c267de4843b97435b6ba023acfb121e5467dfb6d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,6 @@ "name": "whatwg-fetch", "version": "0.4.0", "main": "fetch.js", - "private": true, "devDependencies": { "bower": "1.3.8", "chai": "1.10.0",