Skip to content

Commit 29136d4

Browse files
chore: release v0.0.26 (#176)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a054a01 commit 29136d4

9 files changed

Lines changed: 68 additions & 19 deletions

File tree

Cargo.lock

Lines changed: 8 additions & 8 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.25"
9+
version = "0.0.26"
1010
authors = ["David Steiner <david_j_steiner@yahoo.co.nz>"]
1111
edition = "2024"
1212
license = "MIT"

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.25", path = "../hotfix-dictionary" }
19+
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary" }
2020
fnv = "1"
2121
heck = "0.5"
2222
indoc = "2"
2323

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

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.0.26](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.0.25...hotfix-message-v0.0.26) - 2025-09-08
11+
12+
### Added
13+
14+
- expose some useful types in hotfix-message ([#173](https://github.com/Validus-Risk-Management/hotfix/pull/173))
15+
1016
## [0.0.25](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.0.24...hotfix-message-v0.0.25) - 2025-09-01
1117

1218
### Other

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.25", path = "../hotfix-derive" }
24-
hotfix-dictionary = { version = "0.0.25", path = "../hotfix-dictionary" }
23+
hotfix-derive = { version = "0.0.26", path = "../hotfix-derive" }
24+
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary" }
2525
thiserror = { workspace = true }
2626

2727
[dev-dependencies]
2828
anyhow = "1.0.75"
29-
hotfix-dictionary = { version = "0.0.25", path = "../hotfix-dictionary", features = ["fix42"] }
29+
hotfix-dictionary = { version = "0.0.26", 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.25", path = "../hotfix-codegen" }
36-
hotfix-dictionary = { version = "0.0.25", path = "../hotfix-dictionary", features = ["fix42"] }
35+
hotfix-codegen = { version = "0.0.26", path = "../hotfix-codegen" }
36+
hotfix-dictionary = { version = "0.0.26", path = "../hotfix-dictionary", features = ["fix42"] }

crates/hotfix-status/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.0.26](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-status-v0.0.25...hotfix-status-v0.0.26) - 2025-09-08
11+
12+
### Added
13+
14+
- rudimentary dashboard for session state ([#175](https://github.com/Validus-Risk-Management/hotfix/pull/175))
15+
16+
### Other
17+
18+
- Fix initial creation time setting in redb store
19+
- Add check for code formatting
20+
- Add code coverage badge
21+
- Update version to 0.0.21 to release DynamoDB stores
22+
- Prepare for 0.0.19 release
23+
- Update README with Test Requests
24+
- Update README with next steps
25+
- Process backlog of messages when a resend is completed
26+
- Update README
27+
- Nicer API for manipulating groups and example application using repeating groups
28+
- Add badges
29+
- Update crates in preparation for 0.0.11 release
30+
- Switch to internal fork of ferrumfix for message encoding and decoding
31+
- Use fix44 types for message generation
32+
- Prepare project for crates.io publishing
33+
- Initial commit

crates/hotfix-status/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ async-trait = { workspace = true }
2323
axum = { workspace = true }
2424
chrono = { workspace = true }
2525
displaydoc = { workspace = true }
26-
hotfix = { version = "0.0.25", path = "../hotfix" }
26+
hotfix = { version = "0.0.26", 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"] }
30-
thiserror = { workspace = true }
30+
thiserror = { workspace = true }

crates/hotfix/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.0.26](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.0.25...hotfix-v0.0.26) - 2025-09-08
11+
12+
### Added
13+
14+
- rudimentary dashboard for session state ([#175](https://github.com/Validus-Risk-Management/hotfix/pull/175))
15+
16+
### Other
17+
18+
- formalise when and then structure of test actions and assertions ([#171](https://github.com/Validus-Risk-Management/hotfix/pull/171))
19+
1020
## [0.0.25](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.0.24...hotfix-v0.0.25) - 2025-09-01
1121

1222
### Other

crates/hotfix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ async-trait = { workspace = true }
2424
chrono = { workspace = true, features = ["serde"] }
2525
chrono-tz = { workspace = true, features = ["serde"] }
2626
futures = "^0.3.28"
27-
hotfix-message = { version = "0.0.25", path = "../hotfix-message" }
27+
hotfix-message = { version = "0.0.26", path = "../hotfix-message" }
2828
mongodb = { version = "^3.2", optional = true }
2929
pki-types = { package = "rustls-pki-types", version = "^1" }
3030
redb = { version = "^2.6", optional = true }

0 commit comments

Comments
 (0)