From 2b3aefec3fa1aef456a5b27b148fa9ee5cd2e5f9 Mon Sep 17 00:00:00 2001 From: Tibor Date: Wed, 20 May 2026 13:20:46 +0200 Subject: [PATCH] Prepare v0.1.3 release --- CHANGELOG.md | 11 +++++++++++ pyproject.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index abfe156..b935e86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable public changes to `ordersim` are documented here. +## 0.1.3 - 2026-05-20 + +- Improved default replay throughput by precompiling canonical event streams + once and using the C++ batch path during replay advancement while preserving + fills and valuation marks. +- Moved valuation mark types and compact mark iteration into + `ordersim.valuation`, keeping public imports stable while making economics + easier to read. +- Broadened README, PyPI metadata, and GitHub topics around order-book replay, + latency-aware fill simulation, execution modeling, and market microstructure. + ## 0.1.2 - 2026-05-15 - Added a visual latency demo showing the same strategy taking different fill diff --git a/pyproject.toml b/pyproject.toml index 6816030..1052309 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ordersim" -version = "0.1.2" +version = "0.1.3" description = "Inspectable execution simulator for order-book replay and latency-aware fill simulation" readme = "README.md" requires-python = ">=3.11"