You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,39 @@ All notable changes to Vectrix will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.0.8] - 2026-03-03
9
+
10
+
Built-in Rust engine release — Rust acceleration expanded to all engines and compiled into every wheel. No `[turbo]` extra, no flags — `pip install vectrix` includes the Rust engine like Polars.
11
+
12
+
### Added
13
+
14
+
**Rust Engine Expansion (13 → 25 functions)**
15
+
-`garch_filter`, `egarch_filter`, `gjr_garch_filter`: GARCH family negative log-likelihood hot loops
16
+
-`tbats_filter`: Fourier harmonic state update loop
Vectrix is a time series forecasting library that runs on **3 dependencies** (NumPy, SciPy, Pandas) with **no compiled extensions**. No C compiler, no cmdstan, no system packages — `pip install` and it works.
53
+
Vectrix is a time series forecasting library with a **built-in Rust engine** for blazing-fast performance. 3 dependencies (NumPy, SciPy, Pandas), no compiler needed — `pip install vectrix` and the Rust-accelerated engine is included in the wheel.
54
54
55
55
### Forecasting
56
56
@@ -103,18 +103,18 @@ A pure-numpy HMM (Baum-Welch + Viterbi) detects regime shifts. When a regime cha
103
103
104
104
Bottom-up, top-down, and MinTrace reconciliation for hierarchical time series.
105
105
106
-
### Rust Turbo Mode
106
+
### Built-in Rust Engine
107
107
108
-
Install `vectrix[turbo]` to unlock Rust-accelerated core loops. No Rust compiler needed — pre-built wheels for Linux, macOS (x86 + ARM), and Windows.
108
+
Every `pip install vectrix` includes a pre-built Rust extension — like Polars, no compiler needed. 25 core hot loops are Rust-accelerated across all forecasting engines.
Turbo is fully optional. Without it, Vectrix falls back to Numba JIT (if available) or pure Python. Your code doesn't change — just install and it's faster.
117
+
Pre-built wheels for Linux (x86_64), macOS (ARM + x86), and Windows. The Rust engine is included in the default installation — no extras, no flags, no `[turbo]`.
118
118
119
119
### Built-in Sample Datasets
120
120
@@ -129,9 +129,9 @@ result = forecast(df, date="date", value="passengers", steps=12)
All of the above — forecasting models, regime detection, regression diagnostics, constraint enforcement, hierarchical reconciliation — is implemented in pure Python with only NumPy, SciPy, and Pandas. No compiled extensions, no system dependencies. Rust turbo is optional and never required.
134
+
All of the above — forecasting models, regime detection, regression diagnostics, constraint enforcement, hierarchical reconciliation — runs on just NumPy, SciPy, and Pandas. The Rust engine is compiled into the wheel and loaded automatically. No system dependencies, no compiler, no extra install steps.
pip install "vectrix[foundation]"# + Amazon Chronos-2, Google TimesFM 2.5
30
+
pip install "vectrix[all]"# Everything
31
31
```
32
32
33
-
## Rust Turbo Mode
33
+
## Built-in Rust Engine
34
34
35
-
The `turbo` extra installs `vectrix-core`, a Rust-compiled native extension that accelerates core forecasting loops by 5-10x. Pre-built wheels are available for:
35
+
25 coreforecasting hot loops are Rust-accelerated and compiled into every wheel:
36
36
37
37
- Linux (x86_64, manylinux)
38
-
- macOS (x86_64 + Apple Silicon ARM)
38
+
- macOS (Apple Silicon ARM + x86_64)
39
39
- Windows (x86_64)
40
40
- Python 3.10, 3.11, 3.12, 3.13
41
41
42
42
No Rust compiler is needed. The acceleration is transparent — your code doesn't change, it just runs faster.
Copy file name to clipboardExpand all lines: landing/src/content/en/changelog.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,32 @@ title: Changelog
6
6
7
7
All notable changes to Vectrix are documented here. This project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and the [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) format.
8
8
9
+
## [0.0.8] - 2026-03-03
10
+
11
+
Built-in Rust engine release — Rust acceleration expanded to all engines (13 → 25 functions) and compiled into every wheel. No `[turbo]` extra needed — `pip install vectrix` includes the Rust engine like Polars.
0 commit comments