Skip to content

Commit e31a4b9

Browse files
userFRMclaude
andcommitted
fix: bump tdbe to 0.2.0 for crates.io publish
tdbe gained contract ID fields (expiration/strike/right/strike_price_type) on all tick types in v5.1.0. The crates.io publish failed silently because thetadatadx depended on tdbe 0.1.0 which didn't have those fields. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent addacdf commit e31a4b9

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/tdbe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tdbe"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
rust-version = "1.85"
66
authors = ["userFRM"]

crates/thetadatadx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ default = []
2323
config-file = ["dep:toml"]
2424

2525
[dependencies]
26-
tdbe = { version = "0.1.0", path = "../tdbe" }
26+
tdbe = { version = "0.2.0", path = "../tdbe" }
2727

2828
# gRPC + protobuf (tonic 0.14 extracted prost codec into tonic-prost)
2929
tonic = { version = "=0.14.5", features = ["tls-ring", "tls-native-roots", "channel", "transport"] }

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ crate-type = ["cdylib", "staticlib"]
1010

1111
[dependencies]
1212
thetadatadx = { path = "../crates/thetadatadx" }
13-
tdbe = { version = "0.1.0", path = "../crates/tdbe" }
13+
tdbe = { version = "0.2.0", path = "../crates/tdbe" }
1414
tokio = { version = "1.50.0", features = ["rt-multi-thread"] }

sdks/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
1111
[dependencies]
1212
# The Rust SDK we're wrapping
1313
thetadatadx = { path = "../../crates/thetadatadx" }
14-
tdbe = { version = "0.1.0", path = "../../crates/tdbe" }
14+
tdbe = { version = "0.2.0", path = "../../crates/tdbe" }
1515

1616
# PyO3 bindings
1717
pyo3 = { version = "=0.28.2", features = ["extension-module"] }

tools/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ path = "src/main.rs"
1111

1212
[dependencies]
1313
thetadatadx = { path = "../../crates/thetadatadx" }
14-
tdbe = { version = "0.1.0", path = "../../crates/tdbe" }
14+
tdbe = { version = "0.2.0", path = "../../crates/tdbe" }
1515
clap = { version = "4", features = ["derive"] }
1616
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
1717
sonic-rs = "0.3"

tools/mcp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "src/main.rs"
1212

1313
[dependencies]
1414
thetadatadx = { path = "../../crates/thetadatadx" }
15-
tdbe = { version = "0.1.0", path = "../../crates/tdbe" }
15+
tdbe = { version = "0.2.0", path = "../../crates/tdbe" }
1616
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-util", "io-std"] }
1717
serde = { version = "1", features = ["derive"] }
1818
sonic-rs = "0.3"

tools/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ path = "src/main.rs"
1818

1919
[dependencies]
2020
thetadatadx = { path = "../../crates/thetadatadx" }
21-
tdbe = { version = "0.1.0", path = "../../crates/tdbe" }
21+
tdbe = { version = "0.2.0", path = "../../crates/tdbe" }
2222
axum = { version = "0.8", features = ["ws"] }
2323
tokio = { version = "1", features = ["full"] }
2424
sonic-rs = "0.3"

0 commit comments

Comments
 (0)