From 34230cd19097ddb06a652cda8f7f6fc24992627d Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 12 Dec 2024 12:24:32 +0100 Subject: [PATCH] chore: release 0.8.1 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 20 ++++++++++---------- 2 files changed, 22 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 944763d4..979f939a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ 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.8.1](https://github.com/alloy-rs/op-alloy +/releases/tag/v0.8.1) - 2024-12-12 + +### Features + +- Add serde for OpTxType ([#317](https://github.com/alloy-rs/op-alloy/issues/317)) + +### Miscellaneous Tasks + +- Reuse methods for receipt rlp ([#339](https://github.com/alloy-rs/op-alloy/issues/339)) + ## [0.8.0](https://github.com/alloy-rs/op-alloy /releases/tag/v0.8.0) - 2024-12-10 @@ -24,6 +35,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.8.0 - [registry] Update SCR ([#327](https://github.com/alloy-rs/op-alloy/issues/327)) ### Other diff --git a/Cargo.toml b/Cargo.toml index 19e7c740..4de119ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.8.1" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -36,15 +36,15 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # Workspace -op-alloy-genesis = { version = "0.8.0", path = "crates/genesis", default-features = false } -op-alloy-protocol = { version = "0.8.0", path = "crates/protocol", default-features = false } -op-alloy-consensus = { version = "0.8.0", path = "crates/consensus", default-features = false } -op-alloy-network = { version = "0.8.0", path = "crates/network", default-features = false } -op-alloy-provider = { version = "0.8.0", path = "crates/provider", default-features = false } -op-alloy-registry = { version = "0.8.0", path = "crates/registry", default-features = false } -op-alloy-rpc-types = { version = "0.8.0", path = "crates/rpc-types", default-features = false } -op-alloy-rpc-jsonrpsee = { version = "0.8.0", path = "crates/rpc-jsonrpsee", default-features = false } -op-alloy-rpc-types-engine = { version = "0.8.0", path = "crates/rpc-types-engine", default-features = false } +op-alloy-genesis = { version = "0.8.1", path = "crates/genesis", default-features = false } +op-alloy-protocol = { version = "0.8.1", path = "crates/protocol", default-features = false } +op-alloy-consensus = { version = "0.8.1", path = "crates/consensus", default-features = false } +op-alloy-network = { version = "0.8.1", path = "crates/network", default-features = false } +op-alloy-provider = { version = "0.8.1", path = "crates/provider", default-features = false } +op-alloy-registry = { version = "0.8.1", path = "crates/registry", default-features = false } +op-alloy-rpc-types = { version = "0.8.1", path = "crates/rpc-types", default-features = false } +op-alloy-rpc-jsonrpsee = { version = "0.8.1", path = "crates/rpc-jsonrpsee", default-features = false } +op-alloy-rpc-types-engine = { version = "0.8.1", path = "crates/rpc-types-engine", default-features = false } # Alloy alloy-eips = { version = "0.8", default-features = false }