Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 85b456a

Browse files
authored
Update version to 0.1.12 (#27)
* Documentation: mention version string bump in release instructions * Feature: bump version
1 parent ace3568 commit 85b456a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ committer --fix
5050
#### Release
5151

5252
1. Make your changes on a branch.
53-
54-
2. Once landed in origin/main, add a new version tag to the branch:
53+
2. Update `VERSION` in `committer.go` to new version number.
54+
3. Once landed in origin/main, add a new version tag to the branch:
5555
```shell
5656
git fetch && git checkout main && git pull
5757
git tag --annotate "vNEW.VERSION.HERE"
5858
git push --follow-tags
5959
```
60-
3. `.github/workflows/publish.yml` will generate a new release for your tag. Follow the action in said tab.
60+
4. `.github/workflows/publish.yml` will generate a new release for your tag. Follow the action in said tab.
6161

62-
4. The `v` is important.
62+
5. The `v` is important.
6363

6464
#### Deploy
6565

committer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os"
88
)
99

10-
const VERSION = "0.1.10"
10+
const VERSION = "0.1.12"
1111

1212
func main() {
1313
version := flag.Bool("version", false, "Display version")

0 commit comments

Comments
 (0)