Skip to content

Commit

Permalink
chore: prep 0.21.0 release (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
cartermp authored Feb 22, 2023
1 parent 9b5a393 commit 260829f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package husky

var (
Version string = "0.20.0"
Version string = "0.21.0"
)

0 comments on commit 260829f

Please sign in to comment.