Skip to content

Commit

Permalink
Add note to CONTRIBUTING.md
Browse files Browse the repository at this point in the history
  • Loading branch information
camerondurham committed Feb 13, 2021
1 parent 3ef724c commit ddd4a43
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,15 @@ Change package name:
# change module name in all files
find . -type f \( -name '*.go' -o -name '*.mod' \) -exec sed -i -e "s;container-helper;ch;g" {} +
```


## Releasing New Versions

> Note: This is mainly a reminder for me since
> I can't remember how on Earth to git tag stuff sometimes!

```shell
# releasing a new version
git tag -a v1.4 -m "Version notes here"
```

0 comments on commit ddd4a43

Please sign in to comment.