Skip to content

Commit ae5d8f4

Browse files
chore: release
1 parent 0f47cb6 commit ae5d8f4

11 files changed

Lines changed: 57 additions & 19 deletions

File tree

Cargo.lock

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

crates/hotfix-codegen/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.3](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.1.2...hotfix-codegen-v0.1.3) - 2025-11-03
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix-dictionary, hotfix-dictionary
15+
1016
## [0.1.2](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.1.1...hotfix-codegen-v0.1.2) - 2025-10-09
1117

1218
### Other

crates/hotfix-codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "hotfix-codegen"
33
description = "Code generation for HotFIX."
44
readme = "./README.md"
5-
version = "0.1.2"
5+
version = "0.1.3"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -15,14 +15,14 @@ categories.workspace = true
1515
workspace = true
1616

1717
[dependencies]
18-
hotfix-dictionary = { version = "0.1.1", path = "../hotfix-dictionary" }
18+
hotfix-dictionary = { version = "0.1.2", path = "../hotfix-dictionary" }
1919

2020
chrono.workspace = true
2121
fnv.workspace = true
2222
heck.workspace = true
2323
indoc.workspace = true
2424

2525
[dev-dependencies]
26-
hotfix-dictionary = { version = "0.1.1", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
26+
hotfix-dictionary = { version = "0.1.2", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
2727

2828
syn = { workspace = true, features = ["full", "parsing"] }

crates/hotfix-dictionary/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-dictionary-v0.1.1...hotfix-dictionary-v0.1.2) - 2025-11-03
11+
12+
### Other
13+
14+
- refactor dictionary implementation ([#222](https://github.com/Validus-Risk-Management/hotfix/pull/222))
15+
1016
## [0.1.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-dictionary-v0.1.0...hotfix-dictionary-v0.1.1) - 2025-10-09
1117

1218
### Other

crates/hotfix-dictionary/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "hotfix-dictionary"
33
description = "FIX dictionary generation for HotFIX."
44
readme = "./README.md"
5-
version = "0.1.1"
5+
version = "0.1.2"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

crates/hotfix-message/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.2.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.3...hotfix-message-v0.2.4) - 2025-11-03
11+
12+
### Added
13+
14+
- make initiators cloneable ([#223](https://github.com/Validus-Risk-Management/hotfix/pull/223))
15+
16+
### Fixed
17+
18+
- switch message field data structure to IndexMap from BTreeMap to maintain insertion order ([#218](https://github.com/Validus-Risk-Management/hotfix/pull/218))
19+
20+
### Other
21+
22+
- refactor dictionary implementation ([#222](https://github.com/Validus-Risk-Management/hotfix/pull/222))
23+
1024
## [0.2.3](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.2...hotfix-message-v0.2.3) - 2025-10-21
1125

1226
### Added

crates/hotfix-message/Cargo.toml

Lines changed: 5 additions & 5 deletions
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.3"
4+
version = "0.2.4"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -20,23 +20,23 @@ workspace = true
2020

2121
[dependencies]
2222
hotfix-derive = { version = "0.1.2", path = "../hotfix-derive" }
23-
hotfix-dictionary = { version = "0.1.1", path = "../hotfix-dictionary" }
23+
hotfix-dictionary = { version = "0.1.2", path = "../hotfix-dictionary" }
2424

2525
chrono.workspace = true
2626
indexmap.workspace = true
2727
thiserror.workspace = true
2828

2929
[dev-dependencies]
30-
hotfix-dictionary = { version = "0.1.1", path = "../hotfix-dictionary", features = ["fix42"] }
30+
hotfix-dictionary = { version = "0.1.2", path = "../hotfix-dictionary", features = ["fix42"] }
3131

3232
anyhow.workspace = true
3333
criterion.workspace = true
3434
quickcheck.workspace = true
3535
quickcheck_macros.workspace = true
3636

3737
[build-dependencies]
38-
hotfix-codegen = { version = "0.1.2", path = "../hotfix-codegen" }
39-
hotfix-dictionary = { version = "0.1.1", path = "../hotfix-dictionary", features = ["fix42"] }
38+
hotfix-codegen = { version = "0.1.3", path = "../hotfix-codegen" }
39+
hotfix-dictionary = { version = "0.1.2", path = "../hotfix-dictionary", features = ["fix42"] }
4040

4141
chrono.workspace = true
4242

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.11](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.10...hotfix-status-v0.1.11) - 2025-11-03
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix
15+
1016
## [0.1.10](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.1.9...hotfix-status-v0.1.10) - 2025-10-21
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.10"
4+
version = "0.1.11"
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.5", path = "../hotfix" }
21+
hotfix = { version = "0.2.6", path = "../hotfix" }
2222

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

crates/hotfix/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-v0.2.5...hotfix-v0.2.6) - 2025-11-03
11+
12+
### Added
13+
14+
- make initiators cloneable ([#223](https://github.com/Validus-Risk-Management/hotfix/pull/223))
15+
1016
## [0.2.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.2.4...hotfix-v0.2.5) - 2025-10-21
1117

1218
### Added

0 commit comments

Comments
 (0)