release: bump 0.9.2 -> 0.9.3 (#325)

Release the native data-layer bundle.

`0.9.3` ships everything merged since `0.9.2`:

- **Data layer in all 10 languages** — `CandleReader` (CSV), `TickAggregator`, `Resampler`, live `BinanceFeed` (WebSocket) and the historical `fetch_binance_klines` (REST), each cross-language golden-pinned.
- **`name()` on every indicator** in all 10 languages (514 indicators, golden-pinned).
- **Python is now zero third-party deps** — NumPy is optional (`pip install wickra[numpy]`); `batch` returns a stdlib `array.array` / buffer-protocol `Matrix` (breaking; results numerically identical, batch throughput tradeoff noted in the CHANGELOG).
- **Binance feed: missing `3d` / `1M` intervals** fixed.

Pure version-string bump on top — `bump_version.py` touched 19 files (Cargo + Lock, pyproject, all node package.json/locks + 6 platform stubs, pom + csproj + DESCRIPTION, SECURITY, CHANGELOG `[0.9.3]` + compare URLs). `cargo fmt`/`clippy -D warnings`/`test --workspace --all-features` all green locally (4225+ tests, 0 failed).

The tag/publish is **not** part of this PR — it waits for explicit GO (irreversible publish to crates.io / PyPI / npm / NuGet / Maven / Go / r-universe).
This commit is contained in:
kingchenc
2026-06-17 21:14:22 +02:00
committed by GitHub
parent 75eefbbd08
commit a5fe2e71c4
19 changed files with 71 additions and 65 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
{
"name": "wickra",
"version": "0.9.2",
"version": "0.9.3",
"description": "Streaming-first technical indicators: incremental, fast, install-free. Node bindings powered by Rust.",
"author": "kingchenc <support@wickra.org>",
"main": "index.js",
@@ -47,12 +47,12 @@
"node": ">= 20"
},
"optionalDependencies": {
"wickra-linux-x64-gnu": "0.9.2",
"wickra-linux-arm64-gnu": "0.9.2",
"wickra-darwin-x64": "0.9.2",
"wickra-darwin-arm64": "0.9.2",
"wickra-win32-x64-msvc": "0.9.2",
"wickra-win32-arm64-msvc": "0.9.2"
"wickra-linux-x64-gnu": "0.9.3",
"wickra-linux-arm64-gnu": "0.9.3",
"wickra-darwin-x64": "0.9.3",
"wickra-darwin-arm64": "0.9.3",
"wickra-win32-x64-msvc": "0.9.3",
"wickra-win32-arm64-msvc": "0.9.3"
},
"scripts": {
"build": "napi build --platform --release",