Skip to content

Commit

Permalink
chore: release 0.5.1 (#184)
Browse files Browse the repository at this point in the history
### Description

Releases `0.5.1`.

Unblocks @clabby from refactoring `kona-host` to remove the `debug_*`
endpoints since #183 was
merged.
  • Loading branch information
refcell authored Oct 24, 2024
1 parent 958193d commit 668cc1e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ 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

### Dependencies

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

### Features

- [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] Small Cleanup ([#180](https://github.com/alloy-rs/op-alloy/issues/180))
- Dependency Updates ([#177](https://github.com/alloy-rs/op-alloy/issues/177))

### Other

- Add arbitrary attr ([#182](https://github.com/alloy-rs/op-alloy/issues/182))

## [0.5.0](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.5.0) - 2024-10-18

Expand All @@ -20,6 +41,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [rollup] Backward-activate forks in `RollupConfig` ([#170](https://github.com/alloy-rs/op-alloy/issues/170))
- [envelope] Add missing `From<Signed<TxEip7702>>` ([#168](https://github.com/alloy-rs/op-alloy/issues/168))

### Miscellaneous Tasks

- Release 0.5.0

## [0.4.0](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.4.0) - 2024-10-09

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.0"
version = "0.5.1"
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.0", path = "crates/genesis", default-features = false }
op-alloy-protocol = { version = "0.5.0", path = "crates/protocol", default-features = false }
op-alloy-consensus = { version = "0.5.0", path = "crates/consensus", default-features = false }
op-alloy-rpc-types = { version = "0.5.0", path = "crates/rpc-types", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.5.0", path = "crates/rpc-jsonrpsee", default-features = false }
op-alloy-rpc-types-engine = { version = "0.5.0", path = "crates/rpc-types-engine", default-features = false }
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 }

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

0 comments on commit 668cc1e

Please sign in to comment.