Skip to content

Commit 72a3616

Browse files
chore: release (#306)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c7eecd0 commit 72a3616

File tree

9 files changed

+38
-13
lines changed

9 files changed

+38
-13
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/hotfix-message/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.3.0...hotfix-message-v0.3.1) - 2026-02-06
11+
12+
### Added
13+
14+
- allow errors in message parsing and support business reject outcomes ([#304](https://github.com/Validus-Risk-Management/hotfix/pull/304))
15+
1016
## [0.3.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.8...hotfix-message-v0.3.0) - 2026-01-27
1117

1218
### Other

crates/hotfix-message/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hotfix-message"
33
description = "FIX messages for HotFIX."
4-
version = "0.3.0"
4+
version = "0.3.1"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/hotfix-web-ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.14](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.13...hotfix-web-ui-v0.1.14) - 2026-02-06
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix
15+
1016
## [0.1.13](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.12...hotfix-web-ui-v0.1.13) - 2026-02-03
1117

1218
### Other

crates/hotfix-web-ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hotfix-web-ui"
33
description = "Web dashboard UI components for the HotFIX engine"
4-
version = "0.1.13"
4+
version = "0.1.14"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -12,7 +12,7 @@ keywords.workspace = true
1212
categories.workspace = true
1313

1414
[dependencies]
15-
hotfix = { version = "0.8.0", path = "../hotfix" }
15+
hotfix = { version = "0.9.0", path = "../hotfix" }
1616

1717
anyhow = { workspace = true }
1818
askama = { workspace = true, features = ["serde_json"] }

crates/hotfix-web/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.13](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.12...hotfix-web-v0.1.13) - 2026-02-06
11+
12+
### Added
13+
14+
- replace anyhow errors in session layer with proper error variants ([#302](https://github.com/Validus-Risk-Management/hotfix/pull/302))
15+
1016
## [0.1.12](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.11...hotfix-web-v0.1.12) - 2026-02-03
1117

1218
### Other

crates/hotfix-web/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hotfix-web"
33
description = "Web API and optional dashboard for the HotFIX engine"
4-
version = "0.1.12"
4+
version = "0.1.13"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -18,8 +18,8 @@ workspace = true
1818
ui = ["dep:hotfix-web-ui"]
1919

2020
[dependencies]
21-
hotfix = { version = "0.8.0", path = "../hotfix" }
22-
hotfix-web-ui = { version = "0.1.13", path = "../hotfix-web-ui", optional = true }
21+
hotfix = { version = "0.9.0", path = "../hotfix" }
22+
hotfix-web-ui = { version = "0.1.14", path = "../hotfix-web-ui", optional = true }
2323

2424
anyhow = { workspace = true }
2525
async-trait = { workspace = true }

crates/hotfix/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.9.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.8.0...hotfix-v0.9.0) - 2026-02-06
11+
12+
### Added
13+
14+
- allow errors in message parsing and support business reject outcomes ([#304](https://github.com/Validus-Risk-Management/hotfix/pull/304))
15+
- replace anyhow errors in session layer with proper error variants ([#302](https://github.com/Validus-Risk-Management/hotfix/pull/302))
16+
1017
## [0.8.0](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.7.2...hotfix-v0.8.0) - 2026-02-03
1118

1219
### Added

crates/hotfix/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hotfix"
33
description = "Buy-side FIX engine written in pure Rust"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -21,7 +21,7 @@ test-utils = ["hotfix-store/test-utils"]
2121
workspace = true
2222

2323
[dependencies]
24-
hotfix-message = { version = "0.3.0", path = "../hotfix-message", features = ["utils-chrono"] }
24+
hotfix-message = { version = "0.3.1", path = "../hotfix-message", features = ["utils-chrono"] }
2525
hotfix-store = { version = "0.1.1", path = "../hotfix-store" }
2626
hotfix-store-mongodb = { version = "0.1.3", path = "../hotfix-store-mongodb", optional = true }
2727

@@ -41,7 +41,7 @@ toml = { workspace = true }
4141
tracing = { workspace = true }
4242

4343
[dev-dependencies]
44-
hotfix-message = { version = "0.3.0", path = "../hotfix-message", features = ["fix44", "utils-chrono"] }
44+
hotfix-message = { version = "0.3.1", path = "../hotfix-message", features = ["fix44", "utils-chrono"] }
4545

4646
anyhow = { workspace = true }
4747
rcgen = { workspace = true }

0 commit comments

Comments
 (0)