diff --git a/Cargo.lock b/Cargo.lock index b5f549c..2947a41 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1337,7 +1337,7 @@ dependencies = [ [[package]] name = "hotfix" -version = "0.3.1" +version = "0.3.2" dependencies = [ "anyhow", "async-trait", @@ -1362,7 +1362,7 @@ dependencies = [ [[package]] name = "hotfix-cli" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "assert_cmd", @@ -1428,7 +1428,7 @@ dependencies = [ [[package]] name = "hotfix-web" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "async-trait", @@ -1445,7 +1445,7 @@ dependencies = [ [[package]] name = "hotfix-web-ui" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "askama", diff --git a/crates/hotfix-cli/CHANGELOG.md b/crates/hotfix-cli/CHANGELOG.md new file mode 100644 index 0000000..b70026b --- /dev/null +++ b/crates/hotfix-cli/CHANGELOG.md @@ -0,0 +1,15 @@ +# 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.2.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-cli-v0.1.0...hotfix-cli-v0.2.0) - 2025-11-28 + +### Added + +- support reconnects in shutdowns initiated via CLI tool ([#250](https://github.com/Validus-Risk-Management/hotfix/pull/250)) +- new CLI tool for getting session state and admin actions ([#248](https://github.com/Validus-Risk-Management/hotfix/pull/248)) diff --git a/crates/hotfix-cli/Cargo.toml b/crates/hotfix-cli/Cargo.toml index 5efab22..cd60189 100644 --- a/crates/hotfix-cli/Cargo.toml +++ b/crates/hotfix-cli/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "hotfix-cli" description = "CLI tool for the HotFIX engine" -version = "0.1.0" +version = "0.2.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 3cc2674..6da565e 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.2](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.1...hotfix-web-ui-v0.1.2) - 2025-11-28 + +### Other + +- updated the following local packages: hotfix + ## [0.1.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.0...hotfix-web-ui-v0.1.1) - 2025-11-27 ### Other diff --git a/crates/hotfix-web-ui/Cargo.toml b/crates/hotfix-web-ui/Cargo.toml index 645f90a..258e481 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.1" +version = "0.1.2" authors.workspace = true edition.workspace = true license.workspace = true @@ -12,7 +12,7 @@ keywords.workspace = true categories.workspace = true [dependencies] -hotfix = { version = "0.3.1", path = "../hotfix" } +hotfix = { version = "0.3.2", 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 29784fa..0626adf 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.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.0...hotfix-web-v0.1.1) - 2025-11-28 + +### Added + +- support reconnects in shutdowns initiated via CLI tool ([#250](https://github.com/Validus-Risk-Management/hotfix/pull/250)) + ## [0.1.0](https://github.com/Validus-Risk-Management/hotfix/releases/tag/hotfix-web-v0.1.0) - 2025-11-26 ### Added diff --git a/crates/hotfix-web/Cargo.toml b/crates/hotfix-web/Cargo.toml index f985156..09bdcec 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.0" +version = "0.1.1" authors.workspace = true edition.workspace = true license.workspace = true @@ -18,8 +18,8 @@ workspace = true ui = ["dep:hotfix-web-ui"] [dependencies] -hotfix = { version = "0.3.1", path = "../hotfix" } -hotfix-web-ui = { version = "0.1.1", path = "../hotfix-web-ui", optional = true } +hotfix = { version = "0.3.2", path = "../hotfix" } +hotfix-web-ui = { version = "0.1.2", 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 7fdcc29..419b93c 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.2](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.3.1...hotfix-v0.3.2) - 2025-11-28 + +### Added + +- support reconnects in shutdowns initiated via CLI tool ([#250](https://github.com/Validus-Risk-Management/hotfix/pull/250)) + ## [0.3.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.3.0...hotfix-v0.3.1) - 2025-11-26 ### Added diff --git a/crates/hotfix/Cargo.toml b/crates/hotfix/Cargo.toml index c6ed387..854620c 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.3.1" +version = "0.3.2" authors.workspace = true edition.workspace = true license.workspace = true