Skip to content

Commit

Permalink
Update version to 0.1.12 (#27)
Browse files Browse the repository at this point in the history
* Documentation: mention version string bump in release instructions

* Feature: bump version
  • Loading branch information
noizwaves authored Oct 5, 2022
1 parent ace3568 commit 85b456a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,16 +50,16 @@ committer --fix
#### Release

1. Make your changes on a branch.

2. Once landed in origin/main, add a new version tag to the branch:
2. Update `VERSION` in `committer.go` to new version number.
3. Once landed in origin/main, add a new version tag to the branch:
```shell
git fetch && git checkout main && git pull
git tag --annotate "vNEW.VERSION.HERE"
git push --follow-tags
```
3. `.github/workflows/publish.yml` will generate a new release for your tag. Follow the action in said tab.
4. `.github/workflows/publish.yml` will generate a new release for your tag. Follow the action in said tab.

4. The `v` is important.
5. The `v` is important.

#### Deploy

Expand Down
2 changes: 1 addition & 1 deletion committer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
)

const VERSION = "0.1.10"
const VERSION = "0.1.12"

func main() {
version := flag.Bool("version", false, "Display version")
Expand Down

0 comments on commit 85b456a

Please sign in to comment.