diff --git a/CHANGELOG.md b/CHANGELOG.md index 077b6294..c6eccd68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [0.71.1](https://github.com/propeller-heads/tycho-simulation/compare/0.71.0...0.71.1) (2025-02-04) + + +### Bug Fixes + +* skip decode failures on example streams ([5febdc9](https://github.com/propeller-heads/tycho-simulation/commit/5febdc9bbb1f67019354610e6a799b59d5a9f1c7)) +* warn on updates for unknown pools in example instead of panic ([473feeb](https://github.com/propeller-heads/tycho-simulation/commit/473feebbfbdb856cbe9137a41e339afa4bd350ba)) + ## [0.71.0](https://github.com/propeller-heads/tycho-simulation/compare/0.70.0...0.71.0) (2025-01-30) diff --git a/Cargo.lock b/Cargo.lock index 60434e3c..e5b74e17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "_tycho_simulation_py" -version = "0.71.0" +version = "0.71.1" dependencies = [ "alloy", "num-bigint", @@ -7120,7 +7120,7 @@ dependencies = [ [[package]] name = "tycho-simulation" -version = "0.71.0" +version = "0.71.1" dependencies = [ "alloy", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index eaa47103..1c4f9751 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tycho-simulation" -version = "0.71.0" +version = "0.71.1" edition = "2021" [workspace] diff --git a/tycho_simulation_py/Cargo.toml b/tycho_simulation_py/Cargo.toml index edf7a5a5..58b0e243 100644 --- a/tycho_simulation_py/Cargo.toml +++ b/tycho_simulation_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_tycho_simulation_py" -version = "0.71.0" +version = "0.71.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tycho_simulation_py/pyproject.toml b/tycho_simulation_py/pyproject.toml index 49521afe..1922f2ca 100644 --- a/tycho_simulation_py/pyproject.toml +++ b/tycho_simulation_py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "tycho-simulation-py" -version = "0.71.0" +version = "0.71.1" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust",