Skip to content

Commit 67d95fd

Browse files
authored
feat: make hotfix crate versions move independently (#186)
1 parent 254c6eb commit 67d95fd

9 files changed

Lines changed: 18 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.

Cargo.toml

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

88
[workspace.package]
9-
version = "0.0.27"
109
authors = ["David Steiner <david_j_steiner@yahoo.co.nz>"]
1110
edition = "2024"
1211
license = "MIT"

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.workspace = true
5+
version = "0.1.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true
@@ -16,11 +16,11 @@ workspace = true
1616

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

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

crates/hotfix-derive/Cargo.toml

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

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.workspace = true
5+
version = "0.1.0"
66
authors.workspace = true
77
edition.workspace = true
88
license.workspace = true

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

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

crates/hotfix-status/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.27", path = "../hotfix" }
26+
hotfix = { version = "0.1.0", 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"] }

crates/hotfix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hotfix"
33
description = "An experimental FIX engine"
4-
version.workspace = true
4+
version = "0.1.0"
55
authors.workspace = true
66
edition.workspace = true
77
license.workspace = true

examples/simple-new-order/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "simple-new-order"
3-
version.workspace = true
3+
version = "0.1.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)