diff --git a/CHANGELOG.md b/CHANGELOG.md index 393e40ff..f0bba567 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [0.81.0](https://github.com/propeller-heads/tycho-simulation/compare/0.80.0...0.81.0) (2025-03-04) + + +### Features + +* **price_printer:** display the protocol name for each row in the table ([b8ad2d5](https://github.com/propeller-heads/tycho-simulation/commit/b8ad2d5dc400dfb72a9bda57c4e24027b4788d9c)) + + +### Bug Fixes + +* **quickstart:** map `ethereum` to `mainnet` when creating alloy `NamedChain`. ([2d559b3](https://github.com/propeller-heads/tycho-simulation/commit/2d559b357dbab382540a63d70704a9808eb7cc2a)) + ## [0.80.0](https://github.com/propeller-heads/tycho-simulation/compare/0.79.2...0.80.0) (2025-03-03) diff --git a/Cargo.lock b/Cargo.lock index 5cfa2d2b..7507fc8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "_tycho_simulation_py" -version = "0.80.0" +version = "0.81.0" dependencies = [ "alloy 0.5.4", "num-bigint", @@ -7909,7 +7909,7 @@ dependencies = [ [[package]] name = "tycho-simulation" -version = "0.80.0" +version = "0.81.0" dependencies = [ "alloy 0.5.4", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index 2c6d3ab1..9698793a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tycho-simulation" -version = "0.80.0" +version = "0.81.0" edition = "2021" [workspace] diff --git a/tycho_simulation_py/Cargo.toml b/tycho_simulation_py/Cargo.toml index 2d83cff9..9565fdbb 100644 --- a/tycho_simulation_py/Cargo.toml +++ b/tycho_simulation_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_tycho_simulation_py" -version = "0.80.0" +version = "0.81.0" 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 2eda5766..969e0b2e 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.80.0" +version = "0.81.0" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust",