Skip to content

Commit 5ea59c1

Browse files
chore: release (#268)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent cf0db91 commit 5ea59c1

13 files changed

Lines changed: 60 additions & 24 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.

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.6](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.1.5...hotfix-codegen-v0.1.6) - 2026-01-20
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix-dictionary, hotfix-dictionary
15+
1016
## [0.1.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.1.4...hotfix-codegen-v0.1.5) - 2025-12-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.5"
5+
version = "0.1.6"
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.4", path = "../hotfix-dictionary" }
18+
hotfix-dictionary = { version = "0.1.5", 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.4", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
26+
hotfix-dictionary = { version = "0.1.5", 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.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-dictionary-v0.1.4...hotfix-dictionary-v0.1.5) - 2026-01-20
11+
12+
### Other
13+
14+
- Replace unwraps with anyhow errors in session code ([#265](https://github.com/Validus-Risk-Management/hotfix/pull/265))
15+
1016
## [0.1.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-dictionary-v0.1.3...hotfix-dictionary-v0.1.4) - 2025-12-09
1117

1218
### Added

crates/hotfix-dictionary/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.4"
5+
version = "0.1.5"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -33,4 +33,4 @@ roxmltree.workspace = true
3333
smartstring = { workspace = true, optional = true }
3434
strum.workspace = true
3535
strum_macros.workspace = true
36-
thiserror.workspace = true
36+
thiserror.workspace = true

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.8](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.7...hotfix-message-v0.2.8) - 2026-01-20
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix-dictionary, hotfix-dictionary, hotfix-dictionary, hotfix-codegen
15+
1016
## [0.2.7](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.6...hotfix-message-v0.2.7) - 2025-12-09
1117

1218
### 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.7"
4+
version = "0.2.8"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true
@@ -22,24 +22,24 @@ workspace = true
2222

2323
[dependencies]
2424
hotfix-derive = { version = "0.1.2", path = "../hotfix-derive" }
25-
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary" }
25+
hotfix-dictionary = { version = "0.1.5", path = "../hotfix-dictionary" }
2626

2727
anyhow.workspace = true
2828
chrono.workspace = true
2929
indexmap.workspace = true
3030
thiserror.workspace = true
3131

3232
[dev-dependencies]
33-
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary", features = ["fix42"] }
33+
hotfix-dictionary = { version = "0.1.5", path = "../hotfix-dictionary", features = ["fix42"] }
3434

3535
anyhow.workspace = true
3636
criterion.workspace = true
3737
quickcheck.workspace = true
3838
quickcheck_macros.workspace = true
3939

4040
[build-dependencies]
41-
hotfix-codegen = { version = "0.1.5", path = "../hotfix-codegen" }
42-
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary", features = ["fixt11"] }
41+
hotfix-codegen = { version = "0.1.6", path = "../hotfix-codegen" }
42+
hotfix-dictionary = { version = "0.1.5", path = "../hotfix-dictionary", features = ["fixt11"] }
4343

4444
chrono.workspace = true
4545

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.6](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.5...hotfix-web-ui-v0.1.6) - 2026-01-20
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix
15+
1016
## [0.1.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.4...hotfix-web-ui-v0.1.5) - 2025-12-09
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.5"
4+
version = "0.1.6"
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.4.2", path = "../hotfix" }
15+
hotfix = { version = "0.4.3", 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.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.4...hotfix-web-v0.1.5) - 2026-01-20
11+
12+
### Other
13+
14+
- updated the following local packages: hotfix, hotfix-web-ui
15+
1016
## [0.1.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.3...hotfix-web-v0.1.4) - 2025-12-09
1117

1218
### Other

0 commit comments

Comments
 (0)