diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 0ee8c012..816df2d5 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c3246c4c..071317c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.3.1](https://github.com/matter-labs/anvil-zksync/compare/v0.3.0...v0.3.1) (2025-02-20) + + +### Features + +* add telemetry ([#589](https://github.com/matter-labs/anvil-zksync/issues/589)) ([323687d](https://github.com/matter-labs/anvil-zksync/commit/323687d006decd1bfc88eb9321ef1745b129f7ac)) +* adds abstract and abstract-testnet to named fork options ([#587](https://github.com/matter-labs/anvil-zksync/issues/587)) ([9774a3d](https://github.com/matter-labs/anvil-zksync/commit/9774a3d5864435134017c66563d7f209846c8653)) +* implement basic L1 support and `anvil_zks_commitBatch` ([#575](https://github.com/matter-labs/anvil-zksync/issues/575)) ([ee49bb9](https://github.com/matter-labs/anvil-zksync/commit/ee49bb9434de823d682a4ba4558ff68f2f095c71)) +* use rustls instead of openssl ([#581](https://github.com/matter-labs/anvil-zksync/issues/581)) ([1aa2217](https://github.com/matter-labs/anvil-zksync/commit/1aa22177c8057f740bbc58bc14edb023ad64dc60)) +* zksync_error integration ([#583](https://github.com/matter-labs/anvil-zksync/issues/583)) ([055cd43](https://github.com/matter-labs/anvil-zksync/commit/055cd432d07202edfc5550edf86841fe165bdab7)) + + +### Bug Fixes + +* refrain from starting server during tx replay ([#588](https://github.com/matter-labs/anvil-zksync/issues/588)) ([6cb0925](https://github.com/matter-labs/anvil-zksync/commit/6cb092567d4fcaf34f5da23e087657e4f4cae9ab)) +* update replay mode to refrain from starting server during tx replaying ([6cb0925](https://github.com/matter-labs/anvil-zksync/commit/6cb092567d4fcaf34f5da23e087657e4f4cae9ab)) + ## [0.3.0](https://github.com/matter-labs/anvil-zksync/compare/v0.2.5...v0.3.0) (2025-02-04) diff --git a/Cargo.lock b/Cargo.lock index 5bce9d67..49a95361 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1042,7 +1042,7 @@ dependencies = [ [[package]] name = "anvil-zksync" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy", "anvil_zksync_api_server", @@ -1076,7 +1076,7 @@ dependencies = [ [[package]] name = "anvil_zksync_api_decl" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anvil_zksync_types", "jsonrpsee", @@ -1087,7 +1087,7 @@ dependencies = [ [[package]] name = "anvil_zksync_api_server" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anvil_zksync_api_decl", "anvil_zksync_common", @@ -1113,7 +1113,7 @@ dependencies = [ [[package]] name = "anvil_zksync_common" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anstream", "anstyle", @@ -1121,7 +1121,7 @@ dependencies = [ [[package]] name = "anvil_zksync_config" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy", "anvil_zksync_common", @@ -1140,7 +1140,7 @@ dependencies = [ [[package]] name = "anvil_zksync_core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy", "anvil_zksync_common", @@ -1183,7 +1183,7 @@ dependencies = [ [[package]] name = "anvil_zksync_l1_sidecar" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy", "anvil", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "anvil_zksync_types" -version = "0.3.0" +version = "0.3.1" dependencies = [ "clap", "serde", @@ -10548,7 +10548,7 @@ dependencies = [ [[package]] name = "zksync_error" -version = "0.1.0" +version = "0.3.1" dependencies = [ "anyhow", "lazy_static", diff --git a/Cargo.toml b/Cargo.toml index 311ffa0a..90c6b4ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ strip = "debuginfo" # Automatically strip symbols from the binary. lto = "thin" # Enable link-time optimization. [workspace.package] -version = "0.3.0" # x-release-please-version +version = "0.3.1" # x-release-please-version edition = "2021" authors = ["The Matter Labs Team "] homepage = "https://zksync.io/" diff --git a/crates/zksync_error/Cargo.toml b/crates/zksync_error/Cargo.toml index 91d3988b..0fe1d04d 100644 --- a/crates/zksync_error/Cargo.toml +++ b/crates/zksync_error/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zksync_error" -version = "0.1.0" +version = "0.3.1" edition = "2021" [dependencies] diff --git a/e2e-tests-rust/Cargo.lock b/e2e-tests-rust/Cargo.lock index 81c75f23..b01d08e1 100644 --- a/e2e-tests-rust/Cargo.lock +++ b/e2e-tests-rust/Cargo.lock @@ -869,7 +869,7 @@ dependencies = [ [[package]] name = "anvil_zksync_common" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anstream", "anstyle", @@ -877,7 +877,7 @@ dependencies = [ [[package]] name = "anvil_zksync_config" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy", "anvil_zksync_common", @@ -896,7 +896,7 @@ dependencies = [ [[package]] name = "anvil_zksync_core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "alloy", "anvil_zksync_common", @@ -934,7 +934,7 @@ dependencies = [ [[package]] name = "anvil_zksync_types" -version = "0.3.0" +version = "0.3.1" dependencies = [ "clap", "serde", @@ -7542,7 +7542,7 @@ dependencies = [ [[package]] name = "zksync_error" -version = "0.1.0" +version = "0.3.1" dependencies = [ "anyhow", "lazy_static",