From 383ca62816d4ba75ad7b92eed1c97e0061015770 Mon Sep 17 00:00:00 2001 From: refcell Date: Mon, 13 Jan 2025 12:04:52 -0700 Subject: [PATCH] release: 0.1.4 (#55) --- CHANGELOG.md | 10 ++++++++-- Cargo.toml | 12 ++++++------ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b1b4988..ade19070 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.1.3](https://github.com/op-rs/maili -/releases/tag/v0.1.3) - 2025-01-10 +## [0.1.4](https://github.com/op-rs/maili +/releases/tag/v0.1.4) - 2025-01-13 ### Bug Fixes @@ -122,6 +122,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features +- [protocol] Ecotone Marker that Scalars are Empty ([#45](https://github.com/op-rs/maili/issues/45)) - [protocol] L1BlockInfo Accessors ([#39](https://github.com/op-rs/maili/issues/39)) - [interop] Define `ExecutingMessage` wrapper ([#361](https://github.com/op-rs/maili/issues/361)) - [protocol] Compressors with Mocked Brotli Streaming ([#335](https://github.com/op-rs/maili/issues/335)) @@ -252,6 +253,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- [common] Migrate `DepositTransaction` trait from `op-alloy` ([#46](https://github.com/op-rs/maili/issues/46)) +- Readme Badge ([#51](https://github.com/op-rs/maili/issues/51)) +- Submodule Sync ([#50](https://github.com/op-rs/maili/issues/50)) +- [provider] Shrink scope of `OpEngineApi` to encompass only non-l1 methods ([#48](https://github.com/op-rs/maili/issues/48)) - [rpc] Migrate json types from `op-alloy` ([#37](https://github.com/op-rs/maili/issues/37)) - [common] Migrate deposit source types from `op-alloy` ([#36](https://github.com/op-rs/maili/issues/36)) - Document Crate Releases ([#15](https://github.com/op-rs/maili/issues/15)) @@ -388,6 +393,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other +- 0.1.3 ([#44](https://github.com/op-rs/maili/issues/44)) - 0.1.2 ([#31](https://github.com/op-rs/maili/issues/31)) - 0.1.1 ([#29](https://github.com/op-rs/maili/issues/29)) - Merge branch 'main' into emhane/supervsior-api diff --git a/Cargo.toml b/Cargo.toml index 3da9fb23..5beca608 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.1.3" +version = "0.1.4" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -36,11 +36,11 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # Workspace -maili-common = { version = "0.1.3", path = "crates/common", default-features = false } -maili-protocol = { version = "0.1.3", path = "crates/protocol", default-features = false } -maili-provider = { version = "0.1.3", path = "crates/provider", default-features = false } -maili-registry = { version = "0.1.3", path = "crates/registry", default-features = false } -maili-rpc = { version = "0.1.3", path = "crates/rpc", default-features = false } +maili-common = { version = "0.1.4", path = "crates/common", default-features = false } +maili-protocol = { version = "0.1.4", path = "crates/protocol", default-features = false } +maili-provider = { version = "0.1.4", path = "crates/provider", default-features = false } +maili-registry = { version = "0.1.4", path = "crates/registry", default-features = false } +maili-rpc = { version = "0.1.4", path = "crates/rpc", default-features = false } # OP-Alloy op-alloy-genesis = { version = "0.9.2", default-features = false }