diff --git a/Cargo.lock b/Cargo.lock index 3af5bf9..592ea0a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1375,7 +1375,7 @@ dependencies = [ [[package]] name = "hotfix-store" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "chrono", @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "hotfix-store-mongodb" -version = "0.1.0" +version = "0.1.1" dependencies = [ "async-trait", "chrono", diff --git a/crates/hotfix-store-mongodb/CHANGELOG.md b/crates/hotfix-store-mongodb/CHANGELOG.md index a845848..9c32fe8 100644 --- a/crates/hotfix-store-mongodb/CHANGELOG.md +++ b/crates/hotfix-store-mongodb/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-store-mongodb-v0.1.0...hotfix-store-mongodb-v0.1.1) - 2026-01-30 + +### Other + +- release ([#292](https://github.com/Validus-Risk-Management/hotfix/pull/292)) + ## [0.1.0](https://github.com/Validus-Risk-Management/hotfix/releases/tag/hotfix-store-mongodb-v0.1.0) - 2026-01-29 ### Added diff --git a/crates/hotfix-store-mongodb/Cargo.toml b/crates/hotfix-store-mongodb/Cargo.toml index 9fe08da..4e28711 100644 --- a/crates/hotfix-store-mongodb/Cargo.toml +++ b/crates/hotfix-store-mongodb/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-store-mongodb" description = "MongoDB message store implementation for the hotfix FIX engine" -version = "0.1.0" +version = "0.1.1" authors.workspace = true edition.workspace = true license.workspace = true @@ -15,7 +15,7 @@ categories.workspace = true workspace = true [dependencies] -hotfix-store = { version = "0.1.0", path = "../hotfix-store" } +hotfix-store = { version = "0.1.1", path = "../hotfix-store" } async-trait = { workspace = true } chrono = { workspace = true } futures = { workspace = true } @@ -23,7 +23,7 @@ mongodb = { workspace = true } serde = { workspace = true, features = ["derive"] } [dev-dependencies] -hotfix-store = { version = "0.1.0", path = "../hotfix-store", features = ["test-utils"] } +hotfix-store = { version = "0.1.1", path = "../hotfix-store", features = ["test-utils"] } testcontainers = { workspace = true } tokio = { workspace = true, features = ["test-util", "rt-multi-thread", "macros"] } uuid = { workspace = true, features = ["v4"] } diff --git a/crates/hotfix-store/CHANGELOG.md b/crates/hotfix-store/CHANGELOG.md index 2b6c8b0..cc514e1 100644 --- a/crates/hotfix-store/CHANGELOG.md +++ b/crates/hotfix-store/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-store-v0.1.0...hotfix-store-v0.1.1) - 2026-01-30 + +### Other + +- release ([#292](https://github.com/Validus-Risk-Management/hotfix/pull/292)) + ## [0.1.0](https://github.com/Validus-Risk-Management/hotfix/releases/tag/hotfix-store-v0.1.0) - 2026-01-29 ### Added diff --git a/crates/hotfix-store/Cargo.toml b/crates/hotfix-store/Cargo.toml index fb6fada..011478e 100644 --- a/crates/hotfix-store/Cargo.toml +++ b/crates/hotfix-store/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-store" description = "Message store traits and implementations for the HotFIX engine" -version = "0.1.0" +version = "0.1.1" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index 6cbb0b5..8ff0365 100644 --- a/crates/hotfix/Cargo.toml +++ b/crates/hotfix/Cargo.toml @@ -22,8 +22,8 @@ workspace = true [dependencies] hotfix-message = { version = "0.3.0", path = "../hotfix-message", features = ["utils-chrono"] } -hotfix-store = { version = "0.1.0", path = "../hotfix-store" } -hotfix-store-mongodb = { version = "0.1.0", path = "../hotfix-store-mongodb", optional = true } +hotfix-store = { version = "0.1.1", path = "../hotfix-store" } +hotfix-store-mongodb = { version = "0.1.1", path = "../hotfix-store-mongodb", optional = true } anyhow = { workspace = true } async-trait = { workspace = true }