Remove bower version from release instructions

This commit is contained in:
David Graham 2017-03-02 10:39:07 -07:00
Родитель eebaa2a1bc
Коммит 5cc72dd734
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: AA9405DCE2E0D208
1 изменённых файлов: 4 добавлений и 7 удалений

Просмотреть файл

@ -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