diff --git a/Cargo.lock b/Cargo.lock index 9c61376..2302858 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -555,7 +555,7 @@ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" [[package]] name = "kyushu" -version = "0.2.4" +version = "0.3.0" dependencies = [ "clap", "inquire", @@ -946,7 +946,7 @@ dependencies = [ [[package]] name = "redmaple" -version = "0.8.3" +version = "0.9.0" dependencies = [ "thiserror", "uuid", @@ -1605,7 +1605,7 @@ dependencies = [ [[package]] name = "whirlybird" -version = "0.4.0" +version = "0.5.0" dependencies = [ "getset-scoped", "redmaple", diff --git a/crates/kyushu/CHANGELOG.md b/crates/kyushu/CHANGELOG.md index 1da933a..ed03f40 100644 --- a/crates/kyushu/CHANGELOG.md +++ b/crates/kyushu/CHANGELOG.md @@ -6,6 +6,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/amirography/soapberry/compare/kyushu-v0.2.4...kyushu-v0.3.0) - 2023-03-16 + +### Added +- *(whirlybird)* add logic for journey +- *(kyushu)* add details for linking objects and links them selves +- *(kyushu)* add command requests to proto files +- add tracing instrumentalization +- add tracing instrumentalization +- *(kyushu)* add a basic client-server grpc connection +- add kyushu + +### Other +- defer handling of state from redmaple to later and make it more simplified +- make commands more declaritive +- release +- release +- release +- Merge pull request #40 from amirography/outline_commands +- Merge pull request #39 from amirography/outline_commands +- Merge pull request #35 from amirography/instrumentalize +- improve server's organization +- release +- release +- Merge branch 'main' into CI +- add CI case to labeler +- release +- Merge pull request #18 from amirography/readme +- *(kyushu)* update kyushu's readme +- add labeler +- release +- release +- *(kyushu)* publish on crates.io +- fix type +- fix typo +- add picture to kyushu docs +- add some checks + ## [0.2.4](https://github.com/amirography/soapberry/compare/kyushu-v0.2.3...kyushu-v0.2.4) - 2023-03-13 ### Added diff --git a/crates/kyushu/Cargo.toml b/crates/kyushu/Cargo.toml index 30cf127..732cbc0 100644 --- a/crates/kyushu/Cargo.toml +++ b/crates/kyushu/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kyushu" description = "kyushu is a journaling application which let you deliberate on events and your journey through them" -version = "0.2.4" +version = "0.3.0" edition = "2021" authors = ["Amir Alesheikh "] diff --git a/crates/redmaple/CHANGELOG.md b/crates/redmaple/CHANGELOG.md index ce3bb66..5c274b1 100644 --- a/crates/redmaple/CHANGELOG.md +++ b/crates/redmaple/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.0](https://github.com/amirography/soapberry/compare/redmaple-v0.8.3...redmaple-v0.9.0) - 2023-03-16 + +### Other +- defer handling of state from redmaple to later and make it more simplified +- change the name of a method to identity to be more declaritive + ## [0.8.3](https://github.com/amirography/soapberry/compare/redmaple-v0.8.2...redmaple-v0.8.3) - 2023-03-05 ### Other diff --git a/crates/redmaple/Cargo.toml b/crates/redmaple/Cargo.toml index 49256ac..2cc0974 100644 --- a/crates/redmaple/Cargo.toml +++ b/crates/redmaple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redmaple" -version = "0.8.3" +version = "0.9.0" edition = "2021" authors = ["Amir Alesheikh "] 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 ebbcb4a..e8a4237 100644 --- a/crates/whirlybird/CHANGELOG.md +++ b/crates/whirlybird/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0](https://github.com/amirography/soapberry/compare/whirlybird-v0.4.0...whirlybird-v0.5.0) - 2023-03-16 + +### Other +- defer handling of state from redmaple to later and make it more simplified +- change the name of a method to identity to be more declaritive +- add validity to id of journey +- make more of whirlybird pure + ## [0.4.0](https://github.com/amirography/soapberry/compare/whirlybird-v0.3.4...whirlybird-v0.4.0) - 2023-03-13 ### Added diff --git a/crates/whirlybird/Cargo.toml b/crates/whirlybird/Cargo.toml index cd3c3d2..ad51a94 100644 --- a/crates/whirlybird/Cargo.toml +++ b/crates/whirlybird/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "whirlybird" -version = "0.4.0" +version = "0.5.0" 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." @@ -25,5 +25,5 @@ filter_unconventional = true [dependencies] getset-scoped = {version= "0.1.2"} -redmaple = { version = "0.8.3", path = "../redmaple"} +redmaple = { version = "0.9.0", path = "../redmaple"} thiserror = {version="1.0.38"}