Skip to content

Commit

Permalink
chore(release): prepare for v0.22.0
Browse files Browse the repository at this point in the history
tweaked Make target for updating CHANGELOG.md to include changes already tagged with a pre-release version
updated CHANGELOG.md
  • Loading branch information
Dylan Bourque committed Aug 7, 2024
1 parent 4158dcc commit fdd72fc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.

*Note: Releases that only include dependency updates generated by Dependabot will not appear here.*

## [v0.22.0] - 2024-08-07

### ⚙️ Miscellaneous Tasks

- *(server)* Log health check errors ([24f9f00](https://github.com/CrowdStrike/perseus/commits/24f9f002a90eadc998cb3e4a1ca79034f4a7a387))

### ⛰️ Features

- Update docker compose setup to use PG v16 and v0.40.0 of the pg-semver extension ([b9a0805](https://github.com/CrowdStrike/perseus/commits/b9a080591537244d5981d517e320209f63317160))
- Use H2C for non-TLS client connections ([6bdd47d](https://github.com/CrowdStrike/perseus/commits/6bdd47d34c46dc2658abde791dca3655ca9dcbd1))
- Add backoff/retry to all client operations ([eb09bfe](https://github.com/CrowdStrike/perseus/commits/eb09bfecccba07ba567c5f2c8820dae952c9b1ef))

Contributors: Dylan Bourque

## [v0.19.0] - 2024-05-20

### ⚙️ Miscellaneous Tasks
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ update-changelog: check-git-cliff-install
ifeq ("${NEXT_VERSION}", "")
$(error Must specify the next version via $$NEXT_VERSION)
else
git cliff --unreleased --tag ${NEXT_VERSION} --prepend CHANGELOG.md
$(info Generating change log for ${NEXT_VERSION} ...)
@git cliff --unreleased --ignore-tags 'v\d+\.\d+\.\d+-.+' --tag ${NEXT_VERSION} --prepend CHANGELOG.md
endif

.PHONY: check-golangci-lint-install
Expand Down

0 comments on commit fdd72fc

Please sign in to comment.