Skip to content

Commit

Permalink
chore: release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Oct 18, 2024
1 parent 1f260e0 commit 6675ced
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ 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.0](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.5.0) - 2024-10-18

### Dependencies

- Bump alloy and remove `OpExecutionPayloadV4` ([#176](https://github.com/alloy-rs/op-alloy/issues/176))

### Features

- Add signature function to TxDeposit ([#174](https://github.com/alloy-rs/op-alloy/issues/174))
- Add depositTransaction trait ([#171](https://github.com/alloy-rs/op-alloy/issues/171))
- Op network execution payload envelope decoding ([#149](https://github.com/alloy-rs/op-alloy/issues/149))
- [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))

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

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

### Miscellaneous Tasks

- Release 0.4.0
- Cleanup Arbitrary Tests ([#146](https://github.com/alloy-rs/op-alloy/issues/146))
- Cleanup Workspace Manifest ([#143](https://github.com/alloy-rs/op-alloy/issues/143))
- V0.3.3 ([#140](https://github.com/alloy-rs/op-alloy/issues/140))
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.4.0"
version = "0.5.0"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,12 +36,12 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# Alloy
op-alloy-rpc-jsonrpsee = { version = "0.4.0", path = "crates/rpc-jsonrpsee" }
op-alloy-rpc-types = { version = "0.4.0", path = "crates/rpc-types" }
op-alloy-rpc-types-engine = { version = "0.4.0", path = "crates/rpc-types-engine" }
op-alloy-consensus = { version = "0.4.0", path = "crates/consensus", default-features = false }
op-alloy-genesis = { version = "0.4.0", path = "crates/genesis", default-features = false }
op-alloy-protocol = { version = "0.4.0", path = "crates/protocol", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.5.0", path = "crates/rpc-jsonrpsee" }
op-alloy-rpc-types = { version = "0.5.0", path = "crates/rpc-types" }
op-alloy-rpc-types-engine = { version = "0.5.0", path = "crates/rpc-types-engine" }
op-alloy-consensus = { version = "0.5.0", path = "crates/consensus", default-features = false }
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 }

alloy-rlp = { version = "0.3", default-features = false }
alloy-primitives = { version = "0.8", default-features = false }
Expand Down

0 comments on commit 6675ced

Please sign in to comment.