Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/hotfix-codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.5](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.1.4...hotfix-codegen-v0.1.5) - 2025-12-09

### Other

- updated the following local packages: hotfix-dictionary, hotfix-dictionary

## [0.1.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-codegen-v0.1.3...hotfix-codegen-v0.1.4) - 2025-11-12

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/hotfix-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "hotfix-codegen"
description = "Code generation for HotFIX."
readme = "./README.md"
version = "0.1.4"
version = "0.1.5"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -15,14 +15,14 @@ categories.workspace = true
workspace = true

[dependencies]
hotfix-dictionary = { version = "0.1.3", path = "../hotfix-dictionary" }
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary" }

chrono.workspace = true
fnv.workspace = true
heck.workspace = true
indoc.workspace = true

[dev-dependencies]
hotfix-dictionary = { version = "0.1.3", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }

syn = { workspace = true, features = ["full", "parsing"] }
6 changes: 6 additions & 0 deletions crates/hotfix-dictionary/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-dictionary-v0.1.3...hotfix-dictionary-v0.1.4) - 2025-12-09

### Added

- decouple hotfix session layer from FIX 4.4 ([#257](https://github.com/Validus-Risk-Management/hotfix/pull/257))

## [0.1.3](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-dictionary-v0.1.2...hotfix-dictionary-v0.1.3) - 2025-11-12

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/hotfix-dictionary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "hotfix-dictionary"
description = "FIX dictionary generation for HotFIX."
readme = "./README.md"
version = "0.1.3"
version = "0.1.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/hotfix-message/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.7](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.6...hotfix-message-v0.2.7) - 2025-12-09

### Added

- decouple hotfix session layer from FIX 4.4 ([#257](https://github.com/Validus-Risk-Management/hotfix/pull/257))

## [0.2.6](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-message-v0.2.5...hotfix-message-v0.2.6) - 2025-11-24

### Other
Expand Down
10 changes: 5 additions & 5 deletions crates/hotfix-message/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix-message"
description = "FIX messages for HotFIX."
version = "0.2.6"
version = "0.2.7"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -22,24 +22,24 @@ workspace = true

[dependencies]
hotfix-derive = { version = "0.1.2", path = "../hotfix-derive" }
hotfix-dictionary = { version = "0.1.3", path = "../hotfix-dictionary" }
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary" }

anyhow.workspace = true
chrono.workspace = true
indexmap.workspace = true
thiserror.workspace = true

[dev-dependencies]
hotfix-dictionary = { version = "0.1.3", path = "../hotfix-dictionary", features = ["fix42"] }
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary", features = ["fix42"] }

anyhow.workspace = true
criterion.workspace = true
quickcheck.workspace = true
quickcheck_macros.workspace = true

[build-dependencies]
hotfix-codegen = { version = "0.1.4", path = "../hotfix-codegen" }
hotfix-dictionary = { version = "0.1.3", path = "../hotfix-dictionary", features = ["fixt11"] }
hotfix-codegen = { version = "0.1.5", path = "../hotfix-codegen" }
hotfix-dictionary = { version = "0.1.4", path = "../hotfix-dictionary", features = ["fixt11"] }

chrono.workspace = true

Expand Down
6 changes: 6 additions & 0 deletions crates/hotfix-web-ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [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

### Other

- updated the following local packages: hotfix

## [0.1.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-ui-v0.1.3...hotfix-web-ui-v0.1.4) - 2025-12-08

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/hotfix-web-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix-web-ui"
description = "Web dashboard UI components for the HotFIX engine"
version = "0.1.4"
version = "0.1.5"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -12,7 +12,7 @@ keywords.workspace = true
categories.workspace = true

[dependencies]
hotfix = { version = "0.4.1", path = "../hotfix" }
hotfix = { version = "0.4.2", path = "../hotfix" }

anyhow = { workspace = true }
askama = { workspace = true, features = ["serde_json"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/hotfix-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.4](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.3...hotfix-web-v0.1.4) - 2025-12-09

### Other

- updated the following local packages: hotfix, hotfix-web-ui

## [0.1.3](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-web-v0.1.2...hotfix-web-v0.1.3) - 2025-12-08

### Other
Expand Down
6 changes: 3 additions & 3 deletions crates/hotfix-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix-web"
description = "Web API and optional dashboard for the HotFIX engine"
version = "0.1.3"
version = "0.1.4"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -18,8 +18,8 @@ workspace = true
ui = ["dep:hotfix-web-ui"]

[dependencies]
hotfix = { version = "0.4.1", path = "../hotfix" }
hotfix-web-ui = { version = "0.1.4", path = "../hotfix-web-ui", optional = true }
hotfix = { version = "0.4.2", path = "../hotfix" }
hotfix-web-ui = { version = "0.1.5", path = "../hotfix-web-ui", optional = true }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/hotfix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.2](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.4.1...hotfix-v0.4.2) - 2025-12-09

### Added

- decouple hotfix session layer from FIX 4.4 ([#257](https://github.com/Validus-Risk-Management/hotfix/pull/257))

## [0.4.1](https://github.com/Validus-Risk-Management/hotfix/compare/hotfix-v0.4.0...hotfix-v0.4.1) - 2025-12-08

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/hotfix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hotfix"
description = "Buy-side FIX engine written in pure Rust"
version = "0.4.1"
version = "0.4.2"
authors.workspace = true
edition.workspace = true
license.workspace = true
Expand All @@ -22,7 +22,7 @@ test-utils = []
workspace = true

[dependencies]
hotfix-message = { version = "0.2.6", path = "../hotfix-message", features = ["utils-chrono"] }
hotfix-message = { version = "0.2.7", path = "../hotfix-message", features = ["utils-chrono"] }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand All @@ -43,7 +43,7 @@ tracing = { workspace = true }
uuid = { workspace = true, features = ["v4"] }

[dev-dependencies]
hotfix-message = { version = "0.2.6", path = "../hotfix-message", features = ["fix44", "utils-chrono"] }
hotfix-message = { version = "0.2.7", path = "../hotfix-message", features = ["fix44", "utils-chrono"] }

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