Skip to content

Commit f8892c0

Browse files
userFRMclaude
andcommitted
release: v3.2.1 - remove competitor name from changelog
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c8e789a commit f8892c0

13 files changed

Lines changed: 32 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.2.1] - 2026-03-30
9+
10+
### Fixed
11+
12+
- Removed third-party competitor name from changelog prose.
13+
814
## [3.2.0] - 2026-03-30
915

1016
### Added
@@ -374,7 +380,8 @@ See [TODO.md](TODO.md) for the production readiness checklist and performance ro
374380
- FIT decoder uses i64 accumulator with i32 saturation (no silent overflow)
375381
- Price type range enforced with `assert!` in release builds
376382

377-
[Unreleased]: https://github.com/userFRM/ThetaDataDx/compare/v3.2.0...HEAD
383+
[Unreleased]: https://github.com/userFRM/ThetaDataDx/compare/v3.2.1...HEAD
384+
[3.2.1]: https://github.com/userFRM/ThetaDataDx/compare/v3.2.0...v3.2.1
378385
[3.2.0]: https://github.com/userFRM/ThetaDataDx/compare/v3.1.0...v3.2.0
379386
[3.1.0]: https://github.com/userFRM/ThetaDataDx/compare/v3.0.0...v3.1.0
380387
[3.0.0]: https://github.com/userFRM/ThetaDataDx/compare/v2.0.0...v3.0.0

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.

crates/thetadatadx/Cargo.toml

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

docs-site/docs/changelog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.2.1] - 2026-03-30
9+
10+
### Fixed
11+
12+
- Removed third-party competitor name from changelog prose.
13+
814
## [3.2.0] - 2026-03-30
915

1016
### Added
@@ -374,7 +380,8 @@ See [TODO.md](TODO.md) for the production readiness checklist and performance ro
374380
- FIT decoder uses i64 accumulator with i32 saturation (no silent overflow)
375381
- Price type range enforced with `assert!` in release builds
376382

377-
[Unreleased]: https://github.com/userFRM/ThetaDataDx/compare/v3.2.0...HEAD
383+
[Unreleased]: https://github.com/userFRM/ThetaDataDx/compare/v3.2.1...HEAD
384+
[3.2.1]: https://github.com/userFRM/ThetaDataDx/compare/v3.2.0...v3.2.1
378385
[3.2.0]: https://github.com/userFRM/ThetaDataDx/compare/v3.1.0...v3.2.0
379386
[3.1.0]: https://github.com/userFRM/ThetaDataDx/compare/v3.0.0...v3.1.0
380387
[3.0.0]: https://github.com/userFRM/ThetaDataDx/compare/v2.0.0...v3.0.0

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-ffi"
3-
version = "3.2.0"
3+
version = "3.2.1"
44
edition = "2021"
55
description = "C FFI layer for thetadatadx — used by Go and C++ SDKs"
66
license = "GPL-3.0-or-later"

sdks/python/Cargo.lock

Lines changed: 2 additions & 2 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-py"
3-
version = "3.2.0"
3+
version = "3.2.1"
44
edition = "2021"
55
description = "Python bindings for thetadatadx — native ThetaData SDK powered by Rust"
66

sdks/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "thetadatadx"
7-
version = "3.2.0"
7+
version = "3.2.1"
88
description = "No-JVM ThetaData Terminal — native Rust SDK for direct market data access (Python bindings)"
99
readme = "README.md"
1010
requires-python = ">=3.9"

tools/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thetadatadx-cli"
3-
version = "3.2.0"
3+
version = "3.2.1"
44
edition = "2021"
55
description = "CLI for ThetaDataDx — query ThetaData from your terminal"
66
license = "GPL-3.0-or-later"

tools/mcp/Cargo.lock

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

0 commit comments

Comments
 (0)