diff --git a/CHANGELOG.md b/CHANGELOG.md index c0126e20..3f4b9b0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [0.27.0](https://github.com/propeller-heads/protosim/compare/0.26.0...0.27.0) (2024-10-28) + + +### Features + +* (WIP) Implement set_engine ([47a500b](https://github.com/propeller-heads/protosim/commit/47a500b3b571aa7f98baeff6e42375fdb3ff83ec)) +* Implement get_address_from_call ([c488e86](https://github.com/propeller-heads/protosim/commit/c488e862aea5b327645ba2ac22264d8b8b608b68)) + ## [0.26.0](https://github.com/propeller-heads/protosim/compare/0.25.0...0.26.0) (2024-10-28) diff --git a/Cargo.lock b/Cargo.lock index e3dc8adf..22e690d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "_protosim_py" -version = "0.26.0" +version = "0.27.0" dependencies = [ "ethers", "num-bigint", @@ -5246,7 +5246,7 @@ dependencies = [ [[package]] name = "protosim" -version = "0.26.0" +version = "0.27.0" dependencies = [ "approx", "chrono", diff --git a/Cargo.toml b/Cargo.toml index da82402b..64990e46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protosim" -version = "0.26.0" +version = "0.27.0" edition = "2021" [workspace] diff --git a/protosim_py/Cargo.toml b/protosim_py/Cargo.toml index a01dfd54..a359797f 100644 --- a/protosim_py/Cargo.toml +++ b/protosim_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_protosim_py" -version = "0.26.0" +version = "0.27.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/protosim_py/pyproject.toml b/protosim_py/pyproject.toml index 9421367c..cc661b6a 100644 --- a/protosim_py/pyproject.toml +++ b/protosim_py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "protosim-py" -version = "0.26.0" +version = "0.27.0" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust",