diff --git a/Cargo.lock b/Cargo.lock index 4e0f809..18aa607 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1280,7 +1280,7 @@ dependencies = [ [[package]] name = "hotfix" -version = "0.5.1" +version = "0.6.0" dependencies = [ "anyhow", "async-trait", @@ -1359,7 +1359,7 @@ dependencies = [ [[package]] name = "hotfix-message" -version = "0.2.8" +version = "0.3.0" dependencies = [ "anyhow", "chrono", @@ -1375,7 +1375,7 @@ dependencies = [ [[package]] name = "hotfix-web" -version = "0.1.7" +version = "0.1.8" dependencies = [ "anyhow", "async-trait", @@ -1392,7 +1392,7 @@ dependencies = [ [[package]] name = "hotfix-web-ui" -version = "0.1.8" +version = "0.1.9" dependencies = [ "anyhow", "askama", diff --git a/crates/hotfix-message/CHANGELOG.md b/crates/hotfix-message/CHANGELOG.md index 02e2312..f0c9910 100644 --- a/crates/hotfix-message/CHANGELOG.md +++ b/crates/hotfix-message/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.8...hotfix-message-v0.3.0) - 2026-01-27 + +### Other + +- remove anyhow from hotfix-message crate ([#285](https://github.com/Validus-Risk-Management/hotfix/pull/285)) + ## [0.2.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.7...hotfix-message-v0.2.8) - 2026-01-20 ### Other diff --git a/crates/hotfix-message/Cargo.toml b/crates/hotfix-message/Cargo.toml index 79d9b1a..183861d 100644 --- a/crates/hotfix-message/Cargo.toml +++ b/crates/hotfix-message/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-message" description = "FIX messages for HotFIX." -version = "0.2.8" +version = "0.3.0" authors.workspace = true edition.workspace = true license.workspace = true diff --git a/crates/hotfix-web-ui/CHANGELOG.md b/crates/hotfix-web-ui/CHANGELOG.md index 9967371..be1ebcb 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.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 + +- updated the following local packages: hotfix + ## [0.1.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.7...hotfix-web-ui-v0.1.8) - 2026-01-23 ### Other diff --git a/crates/hotfix-web-ui/Cargo.toml b/crates/hotfix-web-ui/Cargo.toml index 4b5f2ec..1d6b601 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.8" +version = "0.1.9" authors.workspace = true edition.workspace = true license.workspace = true @@ -12,7 +12,7 @@ keywords.workspace = true categories.workspace = true [dependencies] -hotfix = { version = "0.5.1", path = "../hotfix" } +hotfix = { version = "0.6.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 af70ff6..324185f 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.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.7...hotfix-web-v0.1.8) - 2026-01-27 + +### Other + +- updated the following local packages: hotfix, hotfix-web-ui + ## [0.1.7](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.6...hotfix-web-v0.1.7) - 2026-01-23 ### Other diff --git a/crates/hotfix-web/Cargo.toml b/crates/hotfix-web/Cargo.toml index febc93b..6e96e41 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.7" +version = "0.1.8" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,8 +18,8 @@ workspace = true ui = ["dep:hotfix-web-ui"] [dependencies] -hotfix = { version = "0.5.1", path = "../hotfix" } -hotfix-web-ui = { version = "0.1.8", path = "../hotfix-web-ui", optional = true } +hotfix = { version = "0.6.0", path = "../hotfix" } +hotfix-web-ui = { version = "0.1.9", 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 0bf27c7..d57056e 100644 --- a/crates/hotfix/CHANGELOG.md +++ b/crates/hotfix/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.5.1...hotfix-v0.6.0) - 2026-01-27 + +### Added + +- add helper function to delete old sequences in MongoDB store ([#286](https://github.com/Validus-Risk-Management/hotfix/pull/286)) + +### Other + +- remove anyhow from hotfix-message crate ([#285](https://github.com/Validus-Risk-Management/hotfix/pull/285)) + ## [0.5.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.5.0...hotfix-v0.5.1) - 2026-01-23 ### Added diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index 0177c34..79dff7f 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.5.1" +version = "0.6.0" authors.workspace = true edition.workspace = true license.workspace = true @@ -21,7 +21,7 @@ test-utils = [] workspace = true [dependencies] -hotfix-message = { version = "0.2.8", path = "../hotfix-message", features = ["utils-chrono"] } +hotfix-message = { version = "0.3.0", path = "../hotfix-message", features = ["utils-chrono"] } anyhow = { workspace = true } async-trait = { workspace = true } @@ -43,7 +43,7 @@ tracing = { workspace = true } uuid = { workspace = true, features = ["v4"] } [dev-dependencies] -hotfix-message = { version = "0.2.8", path = "../hotfix-message", features = ["fix44", "utils-chrono"] } +hotfix-message = { version = "0.3.0", path = "../hotfix-message", features = ["fix44", "utils-chrono"] } rcgen = "0.13" rustls = { workspace = true, features = ["ring"] }