diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb0125..c347efe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Husky Changelog +## 0.21.0 2021-02-22 + +### Enhancements + +- fix: correct Ruby library/scope name prefix (#172) | [Robb Kidd](https://github.com/) +- fix: update dotnet library name prefix (#174) | [Jamie Danielson](https://github.com/) +- fix: update java library name prefix (#173) | [Jamie Danielson](https://github.com/) + ## 0.20.0 2023-02-16 ### Enhancements diff --git a/RELEASING.md b/RELEASING.md index ad20034..235ace3 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,7 +1,8 @@ # Release Process 1. Update [Version.go](version.go) with new version -2. Add release entry to [changelog](./CHANGELOG.md) +2. Add release entry to [changelog](./CHANGELOG.md). Consider using a command like so: + * `git log --pretty='%C(green)%d%Creset- %s | [%an](https://github.com/)'` 3. Open a PR with the above, and merge that into main 4. Create new tag on merged commit with the new version (e.g. `v1.4.1`) 5. Push the tag upstream (this will kick off the release pipeline in CI) diff --git a/version.go b/version.go index 27f907e..cf5101c 100644 --- a/version.go +++ b/version.go @@ -1,5 +1,5 @@ package husky var ( - Version string = "0.20.0" + Version string = "0.21.0" )