Skip to content

Commit 9413b02

Browse files
committed
release: rebump to 8.0.25 (tdbe 0.12.6) — chronological release order
PR #470 ships before PR #468; reclaim the next sequential patch (8.0.25) so release tags stay chronological. PR #468 will be rebased to 8.0.26 once this lands.
1 parent 5203719 commit 9413b02

20 files changed

Lines changed: 46 additions & 46 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [8.0.26] - 2026-05-05
10+
## [8.0.25] - 2026-05-05
1111

1212
### Fixed
1313

Cargo.lock

Lines changed: 4 additions & 4 deletions
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.12.7"
3+
version = "0.12.6"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true

crates/thetadatadx/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx"
3-
version = "8.0.26"
3+
version = "8.0.25"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
@@ -40,7 +40,7 @@ frames = ["polars", "arrow"]
4040
live-tests = []
4141

4242
[dependencies]
43-
tdbe = { version = "0.12.7", path = "../tdbe" }
43+
tdbe = { version = "0.12.6", path = "../tdbe" }
4444

4545
# gRPC + protobuf (tonic 0.14 extracted prost codec into tonic-prost)
4646
tonic = { version = "=0.14.5", features = ["tls-ring", "tls-native-roots", "channel", "transport"] }
@@ -132,7 +132,7 @@ prost-build = "=0.14.3"
132132
regex = "1.12.3"
133133
toml = "1.1.2"
134134
serde = { version = "1.0.228", features = ["derive"] }
135-
tdbe = { version = "0.12.7", path = "../tdbe" }
135+
tdbe = { version = "0.12.6", path = "../tdbe" }
136136

137137
[[bench]]
138138
name = "bench_decode"

docs-site/docs/changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [8.0.26] - 2026-05-05
10+
## [8.0.25] - 2026-05-05
1111

1212
### Fixed
1313

ffi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-ffi"
3-
version = "8.0.26"
3+
version = "8.0.25"
44
edition.workspace = true
55
rust-version.workspace = true
66
authors.workspace = true
@@ -31,7 +31,7 @@ testing-panic-boundary = []
3131

3232
[dependencies]
3333
thetadatadx = { path = "../crates/thetadatadx" }
34-
tdbe = { version = "0.12.7", path = "../crates/tdbe" }
34+
tdbe = { version = "0.12.6", path = "../crates/tdbe" }
3535
tokio = { version = "1.52.1", features = ["rt-multi-thread"] }
3636
# Used by the FPSS streaming callback silent-drop observability path
3737
# (see `tdx_fpss_dropped_events` / `tdx_unified_dropped_events`). Keep

sdks/python/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdks/python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-py"
3-
version = "8.0.26"
3+
version = "8.0.25"
44
edition = "2021"
55
description = "Python bindings for thetadatadx — native ThetaData SDK powered by Rust"
66
license = "Apache-2.0"
@@ -19,7 +19,7 @@ doc = false
1919
[dependencies]
2020
# The Rust SDK we're wrapping
2121
thetadatadx = { path = "../../crates/thetadatadx" }
22-
tdbe = { version = "0.12.7", path = "../../crates/tdbe" }
22+
tdbe = { version = "0.12.6", path = "../../crates/tdbe" }
2323

2424
# Direct prost dep for decoding `thetadatadx::proto::ResponseData` bytes in
2525
# the `decode_response_bytes` hook. The main crate no longer re-exports

sdks/typescript/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdks/typescript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-napi"
3-
version = "8.0.26"
3+
version = "8.0.25"
44
edition = "2021"
55
description = "TypeScript/Node.js bindings for thetadatadx — native ThetaData SDK powered by Rust"
66
license = "Apache-2.0"
@@ -13,7 +13,7 @@ crate-type = ["cdylib"]
1313

1414
[dependencies]
1515
thetadatadx = { path = "../../crates/thetadatadx" }
16-
tdbe = { version = "0.12.7", path = "../../crates/tdbe" }
16+
tdbe = { version = "0.12.6", path = "../../crates/tdbe" }
1717

1818
napi = { version = "3.8.5", features = ["async", "tokio_rt", "serde-json", "napi6", "chrono_date"] }
1919
napi-derive = "3.5.4"

0 commit comments

Comments
 (0)