Skip to content

Commit 254c6eb

Browse files
chore: release (#185)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b910940 commit 254c6eb

9 files changed

Lines changed: 46 additions & 17 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ members = [
66
resolver = "2"
77

88
[workspace.package]
9-
version = "0.0.26"
9+
version = "0.0.27"
1010
authors = ["David Steiner <david_j_steiner@yahoo.co.nz>"]
1111
edition = "2024"
1212
license = "MIT"

crates/hotfix-codegen/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.0.27](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.0.26...hotfix-codegen-v0.0.27) - 2025-09-15
11+
12+
### Added
13+
14+
- expose Buffer type needed for codegen ([#184](https://github.com/Validus-Risk-Management/hotfix/pull/184))

crates/hotfix-codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ workspace = true
1616

1717
[dependencies]
1818
chrono = "0.4"
19-
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary" }
19+
hotfix-dictionary = { version = "0.0.27", path = "../hotfix-dictionary" }
2020
fnv = "1"
2121
heck = "0.5"
2222
indoc = "2"
2323

2424
[dev-dependencies]
25-
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
25+
hotfix-dictionary = { version = "0.0.27", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
2626
syn = { version = "2", features = ["full", "parsing"] }

crates/hotfix-derive/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.0.27](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-derive-v0.0.26...hotfix-derive-v0.0.27) - 2025-09-15
11+
12+
### Added
13+
14+
- expose Buffer type needed for codegen ([#184](https://github.com/Validus-Risk-Management/hotfix/pull/184))

crates/hotfix-message/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ workspace = true
2020

2121
[dependencies]
2222
chrono = "0.4"
23-
hotfix-derive = { version = "0.0.26", path = "../hotfix-derive" }
24-
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary" }
23+
hotfix-derive = { version = "0.0.27", path = "../hotfix-derive" }
24+
hotfix-dictionary = { version = "0.0.27", path = "../hotfix-dictionary" }
2525
thiserror = { workspace = true }
2626

2727
[dev-dependencies]
2828
anyhow = "1.0.75"
29-
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary", features = ["fix42"] }
29+
hotfix-dictionary = { version = "0.0.27", path = "../hotfix-dictionary", features = ["fix42"] }
3030
quickcheck = "1"
3131
quickcheck_macros = "1"
3232

3333
[build-dependencies]
3434
chrono = "0.4"
35-
hotfix-codegen = { version = "0.0.26", path = "../hotfix-codegen" }
36-
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary", features = ["fix42"] }
35+
hotfix-codegen = { version = "0.0.27", path = "../hotfix-codegen" }
36+
hotfix-dictionary = { version = "0.0.27", path = "../hotfix-dictionary", features = ["fix42"] }

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.2](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.1...hotfix-status-v0.1.2) - 2025-09-15
11+
12+
### Other
13+
14+
- test cases for hotfix-status ([#179](https://github.com/Validus-Risk-Management/hotfix/pull/179))
15+
1016
## [0.1.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.0...hotfix-status-v0.1.1) - 2025-09-08
1117

1218
### Other

crates/hotfix-status/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-status"
33
description = "Status endpoints and an option web-based dashboard for the HotFIX engine"
4-
version = "0.1.1"
4+
version = "0.1.2"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -23,7 +23,7 @@ async-trait = { workspace = true }
2323
axum = { workspace = true }
2424
chrono = { workspace = true }
2525
displaydoc = { workspace = true }
26-
hotfix = { version = "0.0.26", path = "../hotfix" }
26+
hotfix = { version = "0.0.27", path = "../hotfix" }
2727
mime_guess = { workspace = true, optional = true }
2828
rust-embed = { workspace = true, features = ["axum-ex"], optional = true }
2929
serde = { workspace = true, features = ["derive"] }
@@ -32,4 +32,4 @@ thiserror = { workspace = true }
3232
[dev-dependencies]
3333
serde_json = { workspace = true }
3434
tokio = { workspace = true, features = ["full"] }
35-
tower = { workspace = true }
35+
tower = { 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.0.27](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.0.26...hotfix-v0.0.27) - 2025-09-15
11+
12+
### Added
13+
14+
- expose Buffer type needed for codegen ([#184](https://github.com/Validus-Risk-Management/hotfix/pull/184))
15+
- handle messages with incorrect BeginString and comp ID ([#181](https://github.com/Validus-Risk-Management/hotfix/pull/181))
16+
17+
### Other
18+
19+
- test case for garbled message handling ([#180](https://github.com/Validus-Risk-Management/hotfix/pull/180))
20+
1021
## [0.0.26](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.0.25...hotfix-v0.0.26) - 2025-09-08
1122

1223
### Added

0 commit comments

Comments
 (0)