diff --git a/CHANGELOG.md b/CHANGELOG.md index 447f997f..2806c994 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.25.0](https://github.com/propeller-heads/protosim/compare/0.24.0...0.25.0) (2024-10-25) + + +### Features + +* implement create_engine ([4c3cd0c](https://github.com/propeller-heads/protosim/commit/4c3cd0cbb10dd81498862987a62e9cf06cd03e67)) + ## [0.24.0](https://github.com/propeller-heads/protosim/compare/0.23.1...0.24.0) (2024-10-24) diff --git a/Cargo.lock b/Cargo.lock index 64d1af30..c92d5a77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -14,7 +14,7 @@ dependencies = [ [[package]] name = "_protosim_py" -version = "0.24.0" +version = "0.25.0" dependencies = [ "ethers", "num-bigint", @@ -5246,7 +5246,7 @@ dependencies = [ [[package]] name = "protosim" -version = "0.24.0" +version = "0.25.0" dependencies = [ "approx", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 66b1981a..b0c6ca7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protosim" -version = "0.24.0" +version = "0.25.0" edition = "2021" [workspace] diff --git a/protosim_py/Cargo.toml b/protosim_py/Cargo.toml index a4837a13..aa26d6f4 100644 --- a/protosim_py/Cargo.toml +++ b/protosim_py/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "_protosim_py" -version = "0.24.0" +version = "0.25.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 ebf14c90..b63666d2 100644 --- a/protosim_py/pyproject.toml +++ b/protosim_py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "protosim-py" -version = "0.24.0" +version = "0.25.0" requires-python = ">=3.7" classifiers = [ "Programming Language :: Rust",