diff --git a/Cargo.lock b/Cargo.lock index 988b777..c6d8702 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -248,7 +248,7 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "kyushu" -version = "0.18.0" +version = "0.18.1" dependencies = [ "clap", "color-eyre", @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "redmaple" -version = "0.18.1" +version = "0.18.2" dependencies = [ "serde", "thiserror", @@ -561,7 +561,7 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" [[package]] name = "whirlybird" -version = "0.13.3" +version = "0.13.4" dependencies = [ "redmaple", "serde", diff --git a/crates/kyushu/CHANGELOG.md b/crates/kyushu/CHANGELOG.md index 5c603ac..10f8d27 100644 --- a/crates/kyushu/CHANGELOG.md +++ b/crates/kyushu/CHANGELOG.md @@ -517,6 +517,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.1](https://github.com/prmadev/soapberry/compare/kyushu-v0.18.0...kyushu-v0.18.1) - 2023-07-31 + +### Added +- update username + +### Fixed +- fix a linting issue + +### Other +- make things more simple +- remove unused attribute + ## [0.18.0](https://github.com/prmadev/soapberry/compare/kyushu-v0.17.1...kyushu-v0.18.0) - 2023-07-22 ### Other diff --git a/crates/kyushu/Cargo.toml b/crates/kyushu/Cargo.toml index f71591d..0ba2a01 100644 --- a/crates/kyushu/Cargo.toml +++ b/crates/kyushu/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kyushu" description = "kyushu is a local-first, event-based journaling application." -version = "0.18.0" +version = "0.18.1" edition = "2021" authors = ["Amir Alesheikh "] @@ -30,7 +30,7 @@ clap = { version = "4.3.19", features = ["derive", "cargo"] } color-eyre = "0.6.2" once_cell = "1.18.0" owo-colors = "3.5.0" -redmaple = { version = "0.18.1", path = "../redmaple" } +redmaple = { version = "0.18.2", path = "../redmaple" } serde = { version = "1.0.174", features = ["derive"] } serde_json = "1.0.103" thiserror = "1.0.44" @@ -40,6 +40,6 @@ time = { version = "0.3.23", features = [ "local-offset", "serde-human-readable", ] } -whirlybird = { version = "0.13.3", path = "../whirlybird", features = [ +whirlybird = { version = "0.13.4", path = "../whirlybird", features = [ "journey", ], default-features = false } diff --git a/crates/redmaple/CHANGELOG.md b/crates/redmaple/CHANGELOG.md index 62fb741..09ea9b4 100644 --- a/crates/redmaple/CHANGELOG.md +++ b/crates/redmaple/CHANGELOG.md @@ -127,6 +127,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.2](https://github.com/prmadev/soapberry/compare/redmaple-v0.18.1...redmaple-v0.18.2) - 2023-07-31 + +### Added +- update username + ## [0.18.1](https://github.com/prmadev/soapberry/compare/redmaple-v0.18.0...redmaple-v0.18.1) - 2023-07-22 ### Other diff --git a/crates/redmaple/Cargo.toml b/crates/redmaple/Cargo.toml index 49ec710..5ce27a4 100644 --- a/crates/redmaple/Cargo.toml +++ b/crates/redmaple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redmaple" -version = "0.18.1" +version = "0.18.2" edition = "2021" authors = ["Perma "] description = "RedMaple offers an oppinionated yet extremely flexible data modeling system based on events for backend applications" diff --git a/crates/whirlybird/CHANGELOG.md b/crates/whirlybird/CHANGELOG.md index 2fbc862..7f07991 100644 --- a/crates/whirlybird/CHANGELOG.md +++ b/crates/whirlybird/CHANGELOG.md @@ -120,6 +120,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.4](https://github.com/prmadev/soapberry/compare/whirlybird-v0.13.3...whirlybird-v0.13.4) - 2023-07-31 + +### Added +- update username + ## [0.13.3](https://github.com/prmadev/soapberry/compare/whirlybird-v0.13.2...whirlybird-v0.13.3) - 2023-07-22 ### Other diff --git a/crates/whirlybird/Cargo.toml b/crates/whirlybird/Cargo.toml index 0a0389d..a51b438 100644 --- a/crates/whirlybird/Cargo.toml +++ b/crates/whirlybird/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whirlybird" -version = "0.13.3" +version = "0.13.4" edition = "2021" authors = ["Amir Alesheikh "] description = "whirlybird is a library of generic type implementations for RedMaple library, that offers workflows for different events compatible with common contents like todos, blogs and etc." @@ -23,7 +23,7 @@ split_commits = true filter_unconventional = true [dependencies] -redmaple = { version = "0.18.1", path = "../redmaple" } +redmaple = { version = "0.18.2", path = "../redmaple" } serde = { version = "1.0.174", features = ["derive"] } thiserror = { version = "1.0.44" } time = { version = "0.3.23", features = ["serde"] }