diff --git a/Cargo.lock b/Cargo.lock index beb533ed..c939b08b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1292,7 +1292,7 @@ dependencies = [ [[package]] name = "hotfix" -version = "0.2.9" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -1367,7 +1367,7 @@ dependencies = [ [[package]] name = "hotfix-status" -version = "0.1.14" +version = "0.1.15" dependencies = [ "anyhow", "askama", diff --git a/crates/hotfix-status/CHANGELOG.md b/crates/hotfix-status/CHANGELOG.md index 521f3621..aaa2630c 100644 --- a/crates/hotfix-status/CHANGELOG.md +++ b/crates/hotfix-status/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.15](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.14...hotfix-status-v0.1.15) - 2025-11-26 + +### Added + +- allow one off restarts with sequence number reset ([#241](https://github.com/Validus-Risk-Management/hotfix/pull/241)) + ## [0.1.14](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.13...hotfix-status-v0.1.14) - 2025-11-24 ### Other diff --git a/crates/hotfix-status/Cargo.toml b/crates/hotfix-status/Cargo.toml index 605b5cc1..8efb625e 100644 --- a/crates/hotfix-status/Cargo.toml +++ b/crates/hotfix-status/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-status" description = "Status endpoints and an optional web-based dashboard for the HotFIX engine" -version = "0.1.14" +version = "0.1.15" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,7 +18,7 @@ workspace = true ui = ["askama", "mime_guess", "rust-embed"] [dependencies] -hotfix = { version = "0.2.9", path = "../hotfix" } +hotfix = { version = "0.3.0", path = "../hotfix" } anyhow = { workspace = true } askama = { workspace = true, features = ["serde_json"], optional = true } diff --git a/crates/hotfix/CHANGELOG.md b/crates/hotfix/CHANGELOG.md index 12d8cf45..a82639ce 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.3.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.9...hotfix-v0.3.0) - 2025-11-26 + +### Added + +- allow one off restarts with sequence number reset ([#241](https://github.com/Validus-Risk-Management/hotfix/pull/241)) + ## [0.2.9](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.8...hotfix-v0.2.9) - 2025-11-24 ### Added diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index 2f13a23a..912c46b7 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.2.9" +version = "0.3.0" authors.workspace = true edition.workspace = true license.workspace = true