Skip to content

Commit

Permalink
release: 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell committed Nov 20, 2024
1 parent 022f6f5 commit a591ef5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@ 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.7](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.6.7) - 2024-11-18
## [0.6.8](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.6.8) - 2024-11-20

### Bug Fixes

- [genesis] Base Fee Params ([#292](https://github.com/alloy-rs/op-alloy/issues/292))
- Protected bits handling ([#270](https://github.com/alloy-rs/op-alloy/issues/270))
- [book] Batch over SingleBatch ([#260](https://github.com/alloy-rs/op-alloy/issues/260))
- [book] Getting Start Links ([#256](https://github.com/alloy-rs/op-alloy/issues/256))
- [book] Broken Mdbook Version ([#250](https://github.com/alloy-rs/op-alloy/issues/250))

### Features

- Introduce op-alloy-registry ([#290](https://github.com/alloy-rs/op-alloy/issues/290))
- [genesis] Holocene Timestamps on Sepolia ([#285](https://github.com/alloy-rs/op-alloy/issues/285))
- Add missing txtype tryfroms ([#272](https://github.com/alloy-rs/op-alloy/issues/272))
- [protocol] Batch Reader ([#265](https://github.com/alloy-rs/op-alloy/issues/265))
Expand All @@ -29,6 +31,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- [consensus] Trait Abstracted Hardforks ([#289](https://github.com/alloy-rs/op-alloy/issues/289))
- [genesis] Remove hardcoded configs ([#291](https://github.com/alloy-rs/op-alloy/issues/291))
- [consensus] Cleanup Hardforks ([#288](https://github.com/alloy-rs/op-alloy/issues/288))
- [consensus] Re-export and Hardfork Cleanup ([#274](https://github.com/alloy-rs/op-alloy/issues/274))
- [consensus] Signature Definitions ([#281](https://github.com/alloy-rs/op-alloy/issues/281))
- [consensus] OpTxType Conversion ([#283](https://github.com/alloy-rs/op-alloy/issues/283))
Expand All @@ -48,6 +53,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Other

- 0.6.7 ([#287](https://github.com/alloy-rs/op-alloy/issues/287))
- V0.6.6 ([#271](https://github.com/alloy-rs/op-alloy/issues/271))

## [0.6.5](https://github.com/alloy-rs/op-alloy
Expand Down
20 changes: 10 additions & 10 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.7"
version = "0.6.8"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,15 +36,15 @@ rustdoc-args = ["--cfg", "docsrs"]

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

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

0 comments on commit a591ef5

Please sign in to comment.