From 0f55df2843187ab38f7b4907861f4a4536053acc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 10:55:19 +0200 Subject: [PATCH] chore: release (#37) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 20 ++++++++++---------- Cargo.toml | 2 +- 3 files changed, 25 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e796b0e..fc841bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/hseeberger/evented/compare/evented-v0.2.0...evented-v0.2.1) - 2024-06-26 + +### Fixed +- record last version after recovery ([#32](https://github.com/hseeberger/evented/pull/32)) + +### Other +- make EventWithMetadata fields public ([#36](https://github.com/hseeberger/evented/pull/36)) +- *(deps)* bump serde_json from 1.0.117 to 1.0.118 ([#35](https://github.com/hseeberger/evented/pull/35)) +- *(deps)* bump uuid from 1.9.0 to 1.9.1 ([#34](https://github.com/hseeberger/evented/pull/34)) +- *(deps)* bump uuid from 1.8.0 to 1.9.0 ([#33](https://github.com/hseeberger/evented/pull/33)) +- *(deps)* bump api-version from `db05a23` to `f961401` ([#29](https://github.com/hseeberger/evented/pull/29)) +- update deps ([#27](https://github.com/hseeberger/evented/pull/27)) +- add rusty-accounts example ([#23](https://github.com/hseeberger/evented/pull/23)) + ## [0.0.2](https://github.com/hseeberger/evented/compare/v0.0.1...v0.0.2) - 2024-05-29 ### Added diff --git a/Cargo.lock b/Cargo.lock index 26e0518..61daf8b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -772,8 +772,9 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "evented" version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ceb9b4ca7f3863ff27410ca5dce46ecdeda4ce53309e4f5e9be7cd1142514174" dependencies = [ - "assert_matches", "async-stream", "error-ext", "futures", @@ -782,23 +783,17 @@ dependencies = [ "serde_json", "serde_with", "sqlx", - "testcontainers 0.18.0", - "testcontainers-modules 0.6.1", "thiserror", - "time", "tokio", "tracing", - "tracing-test", "trait-variant", - "uuid", ] [[package]] name = "evented" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ceb9b4ca7f3863ff27410ca5dce46ecdeda4ce53309e4f5e9be7cd1142514174" +version = "0.2.1" dependencies = [ + "assert_matches", "async-stream", "error-ext", "futures", @@ -807,10 +802,15 @@ dependencies = [ "serde_json", "serde_with", "sqlx", + "testcontainers 0.18.0", + "testcontainers-modules 0.6.1", "thiserror", + "time", "tokio", "tracing", + "tracing-test", "trait-variant", + "uuid", ] [[package]] @@ -2788,7 +2788,7 @@ dependencies = [ "axum 0.7.5", "configured", "error-ext", - "evented 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "evented 0.2.0", "futures", "opentelemetry", "opentelemetry-otlp", diff --git a/Cargo.toml b/Cargo.toml index bb7c608..ca397d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ uuid = { version = "1.9" } [package] name = "evented" -version = "0.2.0" +version = "0.2.1" edition = "2021" description = "Event Sourcing in Rust on top of PostgreSQL" authors = [ "Heiko Seeberger " ]