Changelog¶
AXON's complete changelog is maintained in the repository root's CHANGELOG.md.
Current Version¶
See GitHub Releases for the latest version number and download links.
Versioning¶
AXON follows Semantic Versioning:
- MAJOR: Incompatible API changes
- MINOR: Backwards-compatible functionality additions
- PATCH: Backwards-compatible bug fixes
Release History¶
v0.1.0 (2024-01-01)¶
Initial release.
Features: - Core trading engine with L1/L2/L3 matching - RL environment (Gymnasium compatible) - LLM agent integration - HPO with Optuna - Walk-forward validation - Model registry - Exchange adapters (Binance, OKX) - Risk control system - Explainability (SHAP, counterfactual)
Performance: - Backtesting throughput: > 1M events/sec - Matching latency P99: < 1μs - RL training: > 10K steps/sec
Upgrade Guide¶
When upgrading between major versions:
- Review CHANGELOG for breaking changes
- Run migration tool:
axon migrate -c config.toml - Update configuration files
- Run tests:
cargo test --workspace - Deploy to staging first
- Monitor metrics for anomalies
Contributing¶
Each commit should include an entry in CHANGELOG.md under the [Unreleased] section (see Contributing Guide).