Skip to content

Commit 17bb026

Browse files
chore: release (#239)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7dd2553 commit 17bb026

File tree

7 files changed

+32
-9
lines changed

7 files changed

+32
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 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.2.6](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.5...hotfix-message-v0.2.6) - 2025-11-24
11+
12+
### Other
13+
14+
- add test case for processing correct duplicate message ([#235](https://github.com/Validus-Risk-Management/hotfix/pull/235))
15+
1016
## [0.2.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.4...hotfix-message-v0.2.5) - 2025-11-12
1117

1218
### Added

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.2.5"
4+
version = "0.2.6"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

crates/hotfix-status/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-status-v0.1.13...hotfix-status-v0.1.14) - 2025-11-24
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-status-v0.1.12...hotfix-status-v0.1.13) - 2025-11-19
1117

1218
### Other

crates/hotfix-status/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-status"
33
description = "Status endpoints and an optional web-based dashboard 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
@@ -18,7 +18,7 @@ workspace = true
1818
ui = ["askama", "mime_guess", "rust-embed"]
1919

2020
[dependencies]
21-
hotfix = { version = "0.2.8", path = "../hotfix" }
21+
hotfix = { version = "0.2.9", path = "../hotfix" }
2222

2323
askama = { workspace = true, features = ["serde_json"], optional = true }
2424
async-trait = { workspace = true }

crates/hotfix/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.9](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.8...hotfix-v0.2.9) - 2025-11-24
11+
12+
### Added
13+
14+
- better handling of resend requests ([#237](https://github.com/Validus-Risk-Management/hotfix/pull/237))
15+
16+
### Other
17+
18+
- add session-level test case for OrigSendingTime missing in dup message ([#238](https://github.com/Validus-Risk-Management/hotfix/pull/238))
19+
- add test case for processing correct duplicate message ([#235](https://github.com/Validus-Risk-Management/hotfix/pull/235))
20+
1021
## [0.2.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.7...hotfix-v0.2.8) - 2025-11-19
1122

1223
### 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.2.8"
4+
version = "0.2.9"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -19,7 +19,7 @@ mongodb = ["dep:mongodb"]
1919
workspace = true
2020

2121
[dependencies]
22-
hotfix-message = { version = "0.2.5", path = "../hotfix-message", features = ["utils-chrono"] }
22+
hotfix-message = { version = "0.2.6", path = "../hotfix-message", features = ["utils-chrono"] }
2323

2424
anyhow = { workspace = true }
2525
async-trait = { workspace = true }
@@ -40,7 +40,7 @@ tracing = { workspace = true }
4040
uuid = { workspace = true, features = ["v4"] }
4141

4242
[dev-dependencies]
43-
hotfix-message = { version = "0.2.5", path = "../hotfix-message", features = ["utils-chrono"] }
43+
hotfix-message = { version = "0.2.6", path = "../hotfix-message", features = ["utils-chrono"] }
4444

4545
testcontainers = { workspace = true }
4646
tokio = { workspace = true, features = ["test-util"] }

0 commit comments

Comments
 (0)