From 69a6e93bbd97d4ed6da2b136aec63de80f09fa9f Mon Sep 17 00:00:00 2001 From: Ari Seyhun Date: Wed, 15 Dec 2021 23:09:49 +0700 Subject: [PATCH] chore(version): 0.2.1 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 4 ++-- thalo-macros/Cargo.toml | 2 +- thalo/Cargo.toml | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5a2bf3..fadf40d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## [0.2.1](https://github.com/thalo-rs/thalo/compare/0.2.0..0.2.1) - 2021-12-15 +#### Build system +- fix invalid links - ([3cb1519](https://github.com/thalo-rs/thalo/commit/3cb15198781d4720263ee3a0bf113c5b89326443)) - [@tqwewe](https://github.com/tqwewe) +- add sleep between publishing packages - ([2af0708](https://github.com/thalo-rs/thalo/commit/2af07083d1cc501ed1f7995ddaf5c100bc5d85c0)) - [@tqwewe](https://github.com/tqwewe) +#### Miscellaneous Chores +- merge branch 'main' of github.com:thalo-rs/thalo into dev - ([0a13f0b](https://github.com/thalo-rs/thalo/commit/0a13f0b2cf5d07a8cad5ac54326e76d89e74ac43)) - [@tqwewe](https://github.com/tqwewe) +- - - + ## [0.2.0](https://github.com/thalo-rs/thalo/compare/0.1.2..0.2.0) - 2021-12-15 #### Bug Fixes - **(examples/bank)** outbox relay feature flag typo - ([e43aca4](https://github.com/thalo-rs/thalo/commit/e43aca477abf8b960ca8d6f1bb66282917d4aee0)) - [@tqwewe](https://github.com/tqwewe) diff --git a/Cargo.lock b/Cargo.lock index 822fffc..9ac9491 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1109,7 +1109,7 @@ dependencies = [ [[package]] name = "thalo" -version = "0.2.0" +version = "0.2.1" dependencies = [ "actix", "async-trait", @@ -1132,7 +1132,7 @@ dependencies = [ [[package]] name = "thalo-macros" -version = "0.2.0" +version = "0.2.1" dependencies = [ "heck", "proc-macro2", diff --git a/thalo-macros/Cargo.toml b/thalo-macros/Cargo.toml index 9da514d..354d264 100644 --- a/thalo-macros/Cargo.toml +++ b/thalo-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thalo-macros" -version = "0.2.0" +version = "0.2.1" authors = ["Ari Seyhun "] edition = "2021" description = "Macros for crates.io/thalo" diff --git a/thalo/Cargo.toml b/thalo/Cargo.toml index 5574798..5497e23 100644 --- a/thalo/Cargo.toml +++ b/thalo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thalo" -version = "0.2.0" +version = "0.2.1" authors = ["Ari Seyhun "] edition = "2021" description = "An event sourcing & CQRS framework for Event Driven Architechture" @@ -38,7 +38,7 @@ sea-query = { version = "0.19.1", features = [ ] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -thalo-macros = { version = "0.2.0", path = "../thalo-macros" } +thalo-macros = { version = "0.2.1", path = "../thalo-macros" } thiserror = "1.0" tokio = { version = "1.14", features = ["macros", "sync"] } tracing = "0.1"