diff --git a/CHANGELOG.md b/CHANGELOG.md index a597e489..a1362809 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## [0.33.0](https://github.com/propeller-heads/tycho-simulation/compare/0.32.0...0.33.0) (2024-11-06) + + +### Features + +* create simple solver for tycho demo ([956b2db](https://github.com/propeller-heads/tycho-simulation/commit/956b2db61c3d8e962b508cde2d69b166a8728c0c)) +* move tutorial to a separate package and make it simpler ([266616d](https://github.com/propeller-heads/tycho-simulation/commit/266616dbcf80218319e7fb986c270b72ea799c9a)) +* **tutorial:** move tutorial files into tutorial directory ([2350e71](https://github.com/propeller-heads/tycho-simulation/commit/2350e7179d9d5dcf93b1ec3c58ad398fc7ebc340)) + + +### Bug Fixes + +* Update foundry and revm dependencies ([ccfbde5](https://github.com/propeller-heads/tycho-simulation/commit/ccfbde51ffb375020f662e66985b0d4d9348b9b9)) +* Update python revm version ([d9f069a](https://github.com/propeller-heads/tycho-simulation/commit/d9f069aa3a16194e2ce6dcd43f85ebdf283583a4)) + ## [0.32.0](https://github.com/propeller-heads/protosim/compare/0.31.0...0.32.0) (2024-11-04) diff --git a/Cargo.lock b/Cargo.lock index 8017d02f..3b0ba80c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "_tycho_simulation_py" -version = "0.32.0" +version = "0.33.0" dependencies = [ "ethers", "num-bigint", @@ -7668,7 +7668,7 @@ dependencies = [ [[package]] name = "tycho-simulation" -version = "0.32.0" +version = "0.33.0" dependencies = [ "alloy-primitives", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 3b0bc7cb..6a62fb68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tycho-simulation" -version = "0.32.0" +version = "0.33.0" edition = "2021" [workspace] @@ -58,7 +58,7 @@ tempfile = "3.13.0" clap = { version = "4.5.3", features = ["derive"] } anyhow = "1.0.79" ratatui = "0.29.0" -crossterm = { version = "0.28.1" , features = ["event-stream"]} +crossterm = { version = "0.28.1", features = ["event-stream"]} [features] default = [] diff --git a/tycho_simulation_py/Cargo.toml b/tycho_simulation_py/Cargo.toml index 0c09cfe7..96a50d40 100644 --- a/tycho_simulation_py/Cargo.toml +++ b/tycho_simulation_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_tycho_simulation_py" -version = "0.32.0" +version = "0.33.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 2214daa8..626e0b26 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.32.0" +version = "0.33.0" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust",