Compare commits

...

3 commits

Author SHA1 Message Date
63738518a3 chore(release): prepare for v0.4.0
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2023-04-02 18:23:13 +02:00
3dfdc4c44e chore(git-cliff): hide version-bump messages 2023-04-02 18:22:44 +02:00
a30cb5087b chore(release): bump version -> 0.4.0 2023-04-02 18:21:11 +02:00
4 changed files with 13 additions and 3 deletions

View file

@ -2,6 +2,16 @@
All notable changes to this project will be documented in this file. 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 ## [0.3.0] - 2023-04-02
### Bug Fixes ### Bug Fixes

2
Cargo.lock generated
View file

@ -2346,7 +2346,7 @@ dependencies = [
[[package]] [[package]]
name = "talon" name = "talon"
version = "0.3.0" version = "0.4.0"
dependencies = [ dependencies = [
"async-compression", "async-compression",
"brotli", "brotli",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "talon" name = "talon"
version = "0.3.0" version = "0.4.0"
edition = "2021" edition = "2021"
authors = ["ThetaDev <t.testboy@gmail.com>"] authors = ["ThetaDev <t.testboy@gmail.com>"]
license = "MIT" license = "MIT"

View file

@ -48,7 +48,7 @@ commit_parsers = [
{ message = "^refactor", group = "Refactor"}, { message = "^refactor", group = "Refactor"},
{ message = "^style", group = "Styling"}, { message = "^style", group = "Styling"},
{ message = "^test", group = "Testing"}, { 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"}, { message = "(^chore)|(^ci)", group = "Miscellaneous Tasks"},
{ body = ".*security", group = "Security"}, { body = ".*security", group = "Security"},
] ]