Skip to content

Commit

Permalink
chore: Release 0.5.2 (#201)
Browse files Browse the repository at this point in the history
### Description

Release `op-alloy-*` `v0.5.2` including ported batch types, improved
crate hygiene, and more.
  • Loading branch information
refcell authored Oct 29, 2024
1 parent 2649c56 commit b60f643
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 9 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,36 @@ 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.5.1](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.5.1) - 2024-10-24
## [0.5.2](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.5.2) - 2024-10-29

### Dependencies

- [workspace] Import Touchups ([#199](https://github.com/alloy-rs/op-alloy/issues/199))
- Bump alloy ([#178](https://github.com/alloy-rs/op-alloy/issues/178))

### Features

- [protocol] Batch ([#200](https://github.com/alloy-rs/op-alloy/issues/200))
- [protocol] Span Batch Validity Checks ([#198](https://github.com/alloy-rs/op-alloy/issues/198))
- [protocol] Span Batch Type ([#197](https://github.com/alloy-rs/op-alloy/issues/197))
- [protocol] Span Batch Transactions ([#196](https://github.com/alloy-rs/op-alloy/issues/196))
- [protocol] Batch TX Data ([#195](https://github.com/alloy-rs/op-alloy/issues/195))
- [protocol] Span Batch Bits ([#194](https://github.com/alloy-rs/op-alloy/issues/194))
- [protocol] Span Batch Element ([#193](https://github.com/alloy-rs/op-alloy/issues/193))
- [protocol] Batch Utilities ([#191](https://github.com/alloy-rs/op-alloy/issues/191))
- [protocol] Batch Error Types ([#190](https://github.com/alloy-rs/op-alloy/issues/190))
- [protocol] BatchValidationProvider ([#189](https://github.com/alloy-rs/op-alloy/issues/189))
- [protocol] SingleBatch Type ([#188](https://github.com/alloy-rs/op-alloy/issues/188))
- [protocol] Batch Validity ([#187](https://github.com/alloy-rs/op-alloy/issues/187))
- [protocol] Batch Type ([#186](https://github.com/alloy-rs/op-alloy/issues/186))
- [rpc-types] `{Try}From` impl for `OpTransactionReceipt` + `Transaction` -> consensus types ([#183](https://github.com/alloy-rs/op-alloy/issues/183))
- [genesis] EIP 1559 System Config Accessor ([#179](https://github.com/alloy-rs/op-alloy/issues/179))

### Miscellaneous Tasks

- [consensus] Upstream Receipt Constructor ([#165](https://github.com/alloy-rs/op-alloy/issues/165))
- Release 0.5.1 ([#184](https://github.com/alloy-rs/op-alloy/issues/184))
- [consensus] Small Cleanup ([#180](https://github.com/alloy-rs/op-alloy/issues/180))
- Dependency Updates ([#177](https://github.com/alloy-rs/op-alloy/issues/177))

Expand Down
14 changes: 7 additions & 7 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.5.1"
version = "0.5.2"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,12 +36,12 @@ rustdoc-args = ["--cfg", "docsrs"]

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

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

0 comments on commit b60f643

Please sign in to comment.