diff --git a/Cargo.lock b/Cargo.lock index 4cc33a0..3af5bf9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1280,7 +1280,7 @@ dependencies = [ [[package]] name = "hotfix" -version = "0.6.0" +version = "0.7.0" dependencies = [ "anyhow", "async-trait", @@ -1402,7 +1402,7 @@ dependencies = [ [[package]] name = "hotfix-web" -version = "0.1.8" +version = "0.1.9" dependencies = [ "anyhow", "async-trait", @@ -1419,7 +1419,7 @@ dependencies = [ [[package]] name = "hotfix-web-ui" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anyhow", "askama", diff --git a/crates/hotfix-store-mongodb/CHANGELOG.md b/crates/hotfix-store-mongodb/CHANGELOG.md new file mode 100644 index 0000000..a845848 --- /dev/null +++ b/crates/hotfix-store-mongodb/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/Validus-Risk-Management/hotfix/releases/tag/hotfix-store-mongodb-v0.1.0) - 2026-01-29 + +### Added + +- break out message stores into their own crates ([#290](https://github.com/Validus-Risk-Management/hotfix/pull/290)) diff --git a/crates/hotfix-store/CHANGELOG.md b/crates/hotfix-store/CHANGELOG.md new file mode 100644 index 0000000..2b6c8b0 --- /dev/null +++ b/crates/hotfix-store/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/Validus-Risk-Management/hotfix/releases/tag/hotfix-store-v0.1.0) - 2026-01-29 + +### Added + +- break out message stores into their own crates ([#290](https://github.com/Validus-Risk-Management/hotfix/pull/290)) diff --git a/crates/hotfix-web-ui/CHANGELOG.md b/crates/hotfix-web-ui/CHANGELOG.md index be1ebcb..d5156f0 100644 --- a/crates/hotfix-web-ui/CHANGELOG.md +++ b/crates/hotfix-web-ui/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.10](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.9...hotfix-web-ui-v0.1.10) - 2026-01-29 + +### Other + +- updated the following local packages: hotfix + ## [0.1.9](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.8...hotfix-web-ui-v0.1.9) - 2026-01-27 ### Other diff --git a/crates/hotfix-web-ui/Cargo.toml b/crates/hotfix-web-ui/Cargo.toml index 1d6b601..7e51dfb 100644 --- a/crates/hotfix-web-ui/Cargo.toml +++ b/crates/hotfix-web-ui/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-web-ui" description = "Web dashboard UI components for the HotFIX engine" -version = "0.1.9" +version = "0.1.10" authors.workspace = true edition.workspace = true license.workspace = true @@ -12,7 +12,7 @@ keywords.workspace = true categories.workspace = true [dependencies] -hotfix = { version = "0.6.0", path = "../hotfix" } +hotfix = { version = "0.7.0", path = "../hotfix" } anyhow = { workspace = true } askama = { workspace = true, features = ["serde_json"] } diff --git a/crates/hotfix-web/CHANGELOG.md b/crates/hotfix-web/CHANGELOG.md index 324185f..eda0d00 100644 --- a/crates/hotfix-web/CHANGELOG.md +++ b/crates/hotfix-web/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.9](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.8...hotfix-web-v0.1.9) - 2026-01-29 + +### Other + +- updated the following local packages: hotfix, hotfix-web-ui + ## [0.1.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.7...hotfix-web-v0.1.8) - 2026-01-27 ### Other diff --git a/crates/hotfix-web/Cargo.toml b/crates/hotfix-web/Cargo.toml index 6e96e41..685ad81 100644 --- a/crates/hotfix-web/Cargo.toml +++ b/crates/hotfix-web/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-web" description = "Web API and optional dashboard for the HotFIX engine" -version = "0.1.8" +version = "0.1.9" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,8 +18,8 @@ workspace = true ui = ["dep:hotfix-web-ui"] [dependencies] -hotfix = { version = "0.6.0", path = "../hotfix" } -hotfix-web-ui = { version = "0.1.9", path = "../hotfix-web-ui", optional = true } +hotfix = { version = "0.7.0", path = "../hotfix" } +hotfix-web-ui = { version = "0.1.10", path = "../hotfix-web-ui", optional = true } anyhow = { workspace = true } async-trait = { workspace = true } diff --git a/crates/hotfix/CHANGELOG.md b/crates/hotfix/CHANGELOG.md index d57056e..d3ff05e 100644 --- a/crates/hotfix/CHANGELOG.md +++ b/crates/hotfix/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.6.0...hotfix-v0.7.0) - 2026-01-29 + +### Added + +- break out message stores into their own crates ([#290](https://github.com/Validus-Risk-Management/hotfix/pull/290)) + ## [0.6.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.5.1...hotfix-v0.6.0) - 2026-01-27 ### Added diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index e333ade..6cbb0b5 100644 --- a/crates/hotfix/Cargo.toml +++ b/crates/hotfix/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix" description = "Buy-side FIX engine written in pure Rust" -version = "0.6.0" +version = "0.7.0" authors.workspace = true edition.workspace = true license.workspace = true