From 14834e77248ea58ef8893d0808a5782262c2d4da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:51:26 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 6 +++--- crates/hotfix-web-ui/CHANGELOG.md | 6 ++++++ crates/hotfix-web-ui/Cargo.toml | 4 ++-- crates/hotfix-web/CHANGELOG.md | 6 ++++++ crates/hotfix-web/Cargo.toml | 6 +++--- crates/hotfix/CHANGELOG.md | 6 ++++++ crates/hotfix/Cargo.toml | 2 +- 7 files changed, 27 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c96860c..f3d7bca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1274,7 +1274,7 @@ dependencies = [ [[package]] name = "hotfix" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "async-trait", @@ -1365,7 +1365,7 @@ dependencies = [ [[package]] name = "hotfix-web" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "async-trait", @@ -1382,7 +1382,7 @@ dependencies = [ [[package]] name = "hotfix-web-ui" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "askama", diff --git a/crates/hotfix-web-ui/CHANGELOG.md b/crates/hotfix-web-ui/CHANGELOG.md index a01c7ca..81295e5 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.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.3...hotfix-web-ui-v0.1.4) - 2025-12-08 + +### Other + +- updated the following local packages: hotfix + ## [0.1.3](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.2...hotfix-web-ui-v0.1.3) - 2025-12-08 ### Other diff --git a/crates/hotfix-web-ui/Cargo.toml b/crates/hotfix-web-ui/Cargo.toml index 3190ad5..2f270b4 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.3" +version = "0.1.4" authors.workspace = true edition.workspace = true license.workspace = true @@ -12,7 +12,7 @@ keywords.workspace = true categories.workspace = true [dependencies] -hotfix = { version = "0.4.0", path = "../hotfix" } +hotfix = { version = "0.4.1", 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 c745ff5..7324695 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.3](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.2...hotfix-web-v0.1.3) - 2025-12-08 + +### Other + +- updated the following local packages: hotfix, hotfix-web-ui + ## [0.1.2](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.1...hotfix-web-v0.1.2) - 2025-12-08 ### Other diff --git a/crates/hotfix-web/Cargo.toml b/crates/hotfix-web/Cargo.toml index 9af3122..33ea215 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.2" +version = "0.1.3" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,8 +18,8 @@ workspace = true ui = ["dep:hotfix-web-ui"] [dependencies] -hotfix = { version = "0.4.0", path = "../hotfix" } -hotfix-web-ui = { version = "0.1.3", path = "../hotfix-web-ui", optional = true } +hotfix = { version = "0.4.1", path = "../hotfix" } +hotfix-web-ui = { version = "0.1.4", 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 95c2af9..b1b097b 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.4.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.4.0...hotfix-v0.4.1) - 2025-12-08 + +### Added + +- support non-gap-fill sequence resets ([#255](https://github.com/Validus-Risk-Management/hotfix/pull/255)) + ## [0.4.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.3.2...hotfix-v0.4.0) - 2025-12-08 ### Added diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index 8de181f..11d940e 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.4.0" +version = "0.4.1" authors.workspace = true edition.workspace = true license.workspace = true