Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ 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.6.1](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.6.1) - 2024-11-06

### Bug Fixes

- [protocol] Batch Decoding ([#235](https://github.com/alloy-rs/op-alloy/issues/235))
- [book] Links Imports ([#227](https://github.com/alloy-rs/op-alloy/issues/227))

### Features

- [book] Engine RPC Types ([#229](https://github.com/alloy-rs/op-alloy/issues/229))

### Miscellaneous Tasks

- [rpc-types] Clean up Exports ([#231](https://github.com/alloy-rs/op-alloy/issues/231))
- [book] Consolidate Links ([#230](https://github.com/alloy-rs/op-alloy/issues/230))
- [book] RPC Types ([#228](https://github.com/alloy-rs/op-alloy/issues/228))
- [book] Protocol Docs ([#225](https://github.com/alloy-rs/op-alloy/issues/225))

## [0.6.0](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.6.0) - 2024-11-06

Expand Down Expand Up @@ -51,6 +70,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.6.0
- [book] Load Rollup Config Example ([#224](https://github.com/alloy-rs/op-alloy/issues/224))
- [book] Genesis Docs ([#223](https://github.com/alloy-rs/op-alloy/issues/223))
- [book] Consensus Docs ([#222](https://github.com/alloy-rs/op-alloy/issues/222))
Expand Down
18 changes: 9 additions & 9 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.6.0"
version = "0.6.1"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,14 +36,14 @@ rustdoc-args = ["--cfg", "docsrs"]

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

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