From 5cc72dd734bfd459a61a61e472c90654d71afc91 Mon Sep 17 00:00:00 2001 From: David Graham Date: Thu, 2 Mar 2017 10:39:07 -0700 Subject: [PATCH] Remove bower version from release instructions --- MAINTAINING.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) 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