diff --git a/CHANGELOG.md b/CHANGELOG.md index 32629ec..e98e6f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [0.4.0] - 2023-04-02 + +### Features + +- [**breaking**] Switch database format to CBOR (not compatible with previous format) + +### Miscellaneous Tasks + +- Hide version-bump messages + ## [0.3.0] - 2023-04-02 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 9eee390..7efe8c2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2346,7 +2346,7 @@ dependencies = [ [[package]] name = "talon" -version = "0.3.0" +version = "0.4.0" dependencies = [ "async-compression", "brotli", diff --git a/Cargo.toml b/Cargo.toml index b102545..3a0581f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "talon" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["ThetaDev "] license = "MIT" diff --git a/cliff.toml b/cliff.toml index 72270cf..1052d83 100644 --- a/cliff.toml +++ b/cliff.toml @@ -48,7 +48,7 @@ commit_parsers = [ { message = "^refactor", group = "Refactor"}, { message = "^style", group = "Styling"}, { message = "^test", group = "Testing"}, - { message = "^chore\\(release\\): prepare for", skip = true}, + { message = "^chore\\(release\\): (prepare for|bump)", skip = true}, { message = "(^chore)|(^ci)", group = "Miscellaneous Tasks"}, { body = ".*security", group = "Security"}, ]