Skip to content

Commit e446d00

Browse files
committed
Prepare for 0.0.23 release
1 parent feb3ceb commit e446d00

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

Cargo.lock

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

crates/hotfix-codegen/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ workspace = true
1616

1717
[dependencies]
1818
chrono = "0.4"
19-
hotfix-dictionary = { version = "0.0.22", path = "../hotfix-dictionary" }
19+
hotfix-dictionary = { version = "0.0.23", path = "../hotfix-dictionary" }
2020
fnv = "1"
2121
heck = "0.4"
2222
indoc = "2"
@@ -27,7 +27,7 @@ strum_macros = "0.25"
2727
arbitrary = { version = "1.0", features = ["derive"] }
2828
criterion = { version = "0.5.1", features = ["html_reports"] }
2929
enum-as-inner = "0.6"
30-
hotfix-dictionary = { version = "0.0.22", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
30+
hotfix-dictionary = { version = "0.0.23", path = "../hotfix-dictionary", features = ["fix40", "fix41", "fix42", "fix43", "fix50"] }
3131
quickcheck = "1"
3232
quickcheck_derive = "0.3"
3333
quickcheck_macros = "1"

crates/hotfix-dictionary/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ impl Dictionary {
162162
pub fn version(&self) -> &str {
163163
self.version.as_str()
164164
}
165-
165+
166166
pub fn load_from_file(path: &str) -> Result<Self, ParseDictionaryError> {
167167
let spec = std::fs::read_to_string(path).unwrap();
168168
Dictionary::from_quickfix_spec(&spec)

crates/hotfix-message/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@ workspace = true
2020

2121
[dependencies]
2222
chrono = "0.4"
23-
hotfix-derive = { version = "0.0.22", path = "../hotfix-derive" }
24-
hotfix-dictionary = { version = "0.0.22", path = "../hotfix-dictionary" }
23+
hotfix-derive = { version = "0.0.23", path = "../hotfix-derive" }
24+
hotfix-dictionary = { version = "0.0.23", path = "../hotfix-dictionary" }
2525
nohash-hasher = "^0.2"
2626
serde = { workspace = true, features = ["derive"] }
2727
thiserror = { workspace = true }
2828
tracing = { workspace = true }
2929

3030
[dev-dependencies]
3131
anyhow = "1.0.75"
32-
hotfix-dictionary = { version = "0.0.22", path = "../hotfix-dictionary", features = ["fix42"] }
32+
hotfix-dictionary = { version = "0.0.23", path = "../hotfix-dictionary", features = ["fix42"] }
3333
quickcheck = "1"
3434
quickcheck_derive = "0.3"
3535
quickcheck_macros = "1"
3636

3737
[build-dependencies]
3838
chrono = "0.4"
39-
hotfix-codegen = { version = "0.0.22", path = "../hotfix-codegen" }
40-
hotfix-dictionary = { version = "0.0.22", path = "../hotfix-dictionary", features = ["fix42"] }
39+
hotfix-codegen = { version = "0.0.23", path = "../hotfix-codegen" }
40+
hotfix-dictionary = { version = "0.0.23", path = "../hotfix-dictionary", features = ["fix42"] }
4141
fnv = "1"
4242
heck = "0.4"
4343
indoc = "2"

crates/hotfix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ aws-config = { version = "1", optional = true }
2525
aws-sdk-dynamodb = { version = "^0.39", optional = true }
2626
async-trait = "^0.1.73"
2727
futures = "^0.3.28"
28-
hotfix-message = { version = "0.0.22", path = "../hotfix-message" }
28+
hotfix-message = { version = "0.0.23", path = "../hotfix-message" }
2929
mongodb = { version = "^2.7", optional = true }
3030
pki-types = { package = "rustls-pki-types", version = "^0.2" }
3131
redb = { version = "^1.1.0", optional = true }

0 commit comments

Comments
 (0)