From 85b456a20bc3a9ad87b0d462ecee5b0ae3d5e6ea Mon Sep 17 00:00:00 2001 From: Adam Neumann Date: Wed, 5 Oct 2022 16:37:45 -0700 Subject: [PATCH] Update version to 0.1.12 (#27) * Documentation: mention version string bump in release instructions * Feature: bump version --- README.md | 8 ++++---- committer.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7ba80f5..9b54992 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/committer.go b/committer.go index b675253..b23d320 100644 --- a/committer.go +++ b/committer.go @@ -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")