Skip to content

Commit

Permalink
package.json: Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jhenstridge committed Apr 9, 2020
1 parent 9b46099 commit c217a99
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ steps including code reformatting and linting with:
```bash
$ npm run all
```

## Making Releases

1. Update the version number in `package.json`, commit and push.
2. On the Github website, make a release matching the version number (e.g. `v1.0.0`).
3. Update the `v1` tag to point at the new release revision.
```
git tag -fa v1 -m "Update v1 tag"
git push origin v1 --force
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snapcraft-build-action",
"version": "1.0.2",
"version": "1.0.3",
"private": true,
"description": "A Github action that build snapcraft projects",
"main": "lib/main.js",
Expand Down

0 comments on commit c217a99

Please sign in to comment.