Skip to content

Commit

Permalink
release: 0.10.2 (#413)
Browse files Browse the repository at this point in the history
### Description

Patch release to fix network upgrade txs
  • Loading branch information
refcell authored Feb 4, 2025
1 parent 9492b6c commit 2d52eea
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ 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.10.1](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.10.1) - 2025-02-03
## [0.10.2](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.10.2) - 2025-02-04

### Bug Fixes

- [consensus] Ecotone Upgrade Txs ([#412](https://github.com/alloy-rs/op-alloy/issues/412))
- [consensus] L1BlockInfo datas ([#408](https://github.com/alloy-rs/op-alloy/issues/408))

### Features
Expand All @@ -20,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Rm bad non_exhaustive ([#404](https://github.com/alloy-rs/op-alloy/issues/404))

### Other

- 0.10.1 ([#409](https://github.com/alloy-rs/op-alloy/issues/409))

## [0.10.0](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.10.0) - 2025-01-31

Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.10.1"
version = "0.10.2"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,13 +36,13 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# Workspace
op-alloy-consensus = { version = "0.10.1", path = "crates/consensus", default-features = false }
op-alloy-network = { version = "0.10.1", path = "crates/network", default-features = false }
op-alloy-provider = { version = "0.10.1", path = "crates/provider", default-features = false }
op-alloy-rpc-types = { version = "0.10.1", path = "crates/rpc-types", default-features = false }
op-alloy-rpc-types-engine = { version = "0.10.1", path = "crates/rpc-types-engine", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.10.1", path = "crates/rpc-jsonrpsee", default-features = false }
op-alloy-flz = { version = "0.10.1", path = "crates/flz", default-features = false }
op-alloy-consensus = { version = "0.10.2", path = "crates/consensus", default-features = false }
op-alloy-network = { version = "0.10.2", path = "crates/network", default-features = false }
op-alloy-provider = { version = "0.10.2", path = "crates/provider", default-features = false }
op-alloy-rpc-types = { version = "0.10.2", path = "crates/rpc-types", default-features = false }
op-alloy-rpc-types-engine = { version = "0.10.2", path = "crates/rpc-types-engine", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.10.2", path = "crates/rpc-jsonrpsee", default-features = false }
op-alloy-flz = { version = "0.10.2", path = "crates/flz", default-features = false }

# Alloy
alloy-eips = { version = "0.11", default-features = false }
Expand Down

0 comments on commit 2d52eea

Please sign in to comment.