diff --git a/MAINTAINING.md b/MAINTAINING.md index 0082ab34..22185b79 100644 --- a/MAINTAINING.md +++ b/MAINTAINING.md @@ -10,18 +10,15 @@ minor version "1.x.x" bump is in order. To prepare the release commit: -1. Edit the [bower.json](https://github.com/github/fetch/blob/master/bower.json) +1. Update the npm [package.json](https://github.com/github/fetch/blob/master/package.json) `version` value. -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`. +2. Make a single commit with the description as "Fetch 2.x.x". +3. Finally, tag the commit with `v2.x.x`. ``` $ git pull -$ vim bower.json $ vim package.json -$ git add bower.json package.json +$ git add package.json $ git commit -m "Fetch 1.x.x" $ git tag v1.x.x $ git push