From e89aa2cfef634dcae89ab857d1ba5b5942131672 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 13:22:14 +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 8d15821..7fb486b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1295,7 +1295,7 @@ dependencies = [ [[package]] name = "hotfix" -version = "0.12.0" +version = "0.12.1" dependencies = [ "anyhow", "async-trait", @@ -1415,7 +1415,7 @@ dependencies = [ [[package]] name = "hotfix-web" -version = "0.1.19" +version = "0.1.20" dependencies = [ "anyhow", "async-trait", @@ -1432,7 +1432,7 @@ dependencies = [ [[package]] name = "hotfix-web-ui" -version = "0.1.20" +version = "0.1.21" dependencies = [ "anyhow", "askama", diff --git a/crates/hotfix-web-ui/CHANGELOG.md b/crates/hotfix-web-ui/CHANGELOG.md index d31bbe1..8c85f8b 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.21](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.20...hotfix-web-ui-v0.1.21) - 2026-05-13 + +### Other + +- updated the following local packages: hotfix + ## [0.1.20](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.19...hotfix-web-ui-v0.1.20) - 2026-04-24 ### Other diff --git a/crates/hotfix-web-ui/Cargo.toml b/crates/hotfix-web-ui/Cargo.toml index 45ecbae..b7e5e57 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.20" +version = "0.1.21" authors.workspace = true edition.workspace = true license.workspace = true @@ -12,7 +12,7 @@ keywords.workspace = true categories.workspace = true [dependencies] -hotfix = { version = "0.12.0", path = "../hotfix" } +hotfix = { version = "0.12.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 f62cade..ab8e2d9 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.20](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.19...hotfix-web-v0.1.20) - 2026-05-13 + +### Other + +- updated the following local packages: hotfix, hotfix-web-ui + ## [0.1.19](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.18...hotfix-web-v0.1.19) - 2026-04-24 ### Other diff --git a/crates/hotfix-web/Cargo.toml b/crates/hotfix-web/Cargo.toml index 612a22f..a41bfc7 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.19" +version = "0.1.20" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,8 +18,8 @@ workspace = true ui = ["dep:hotfix-web-ui"] [dependencies] -hotfix = { version = "0.12.0", path = "../hotfix" } -hotfix-web-ui = { version = "0.1.20", path = "../hotfix-web-ui", optional = true } +hotfix = { version = "0.12.1", path = "../hotfix" } +hotfix-web-ui = { version = "0.1.21", 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 4bd5cf9..d185d83 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.12.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.12.0...hotfix-v0.12.1) - 2026-05-13 + +### Added + +- support weekly fix sessions ([#350](https://github.com/Validus-Risk-Management/hotfix/pull/350)) + ## [0.12.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.11.2...hotfix-v0.12.0) - 2026-04-24 ### Fixed diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index 4c03046..1181a2d 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.12.0" +version = "0.12.1" authors.workspace = true edition.workspace = true license.workspace = true