Version bump `0.8.3` → `0.8.4`. Ships the work merged via #254: ### Fixed - A single non-finite (NaN/inf) tick no longer poisons indicator state — 38 more scalar/pairwise indicators (linear-regression family, rolling quantiles/IQR, `Variance`/`StdDev`-derived stats, `Kurtosis`/`Skewness`, trailing stops, `KalmanHedgeRatio`, `SpreadBollingerBands`, …) now reject non-finite input and return `None`, joining the 16 pairwise indicators fixed earlier. ### Added - Catalogue-wide property-based invariant harness (`crates/wickra-core/tests/invariants.rs`) asserting `batch == streaming`, `reset == fresh`, and non-finite-input rejection for every indicator and bar-builder. ### Changed - CI: every job now has a runtime cap and the flaky Node test step auto-retries. - Documentation accuracy fixes in `SECURITY.md`, `ARCHITECTURE.md`, and `THREAT_MODEL.md`. Bump touches the manual release touchpoints only (`Cargo.toml`/`Cargo.lock`, Python/Node/Java/C#/R manifests, lockfiles, `SECURITY.md`, `CHANGELOG.md`). docs/webpage version strings are left to `sync-about.yml` on the tag.
23 lines
1.1 KiB
Plaintext
23 lines
1.1 KiB
Plaintext
Package: wickra
|
|
Type: Package
|
|
Title: Streaming-First Technical Indicators
|
|
Version: 0.8.4
|
|
Authors@R: person("Wickra contributors", role = c("aut", "cre"), email = "support@wickra.org")
|
|
Description: R bindings for the Wickra technical-analysis library over its C ABI
|
|
hub. Exposes 514 indicators, each an O(1) streaming state machine shared with
|
|
the Rust core and the other language bindings, so that live and historical
|
|
evaluation use the exact same implementation.
|
|
License: MIT + file LICENSE | Apache License 2.0
|
|
URL: https://github.com/wickra-lib/wickra, https://docs.wickra.org
|
|
BugReports: https://github.com/wickra-lib/wickra/issues
|
|
Encoding: UTF-8
|
|
NeedsCompilation: yes
|
|
SystemRequirements: the Wickra C ABI shared library, downloaded automatically at
|
|
install time from the matching GitHub release and bundled into the package.
|
|
Set WICKRA_INCLUDE_DIR and WICKRA_LIB_DIR to build against a locally built C
|
|
ABI instead (e.g. after `cargo build -p wickra-c --release`).
|
|
Roxygen: list(markdown = TRUE)
|
|
Suggests: testthat (>= 3.0.0)
|
|
Config/testthat/edition: 3
|
|
Config/roxygen2/version: 8.0.0
|