Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 0.9.1 #363

Merged
merged 1 commit into from
Jan 7, 2025
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.9.1](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.9.1) - 2025-01-07

### Dependencies

- Quick Version Bumps ([#362](https://github.com/alloy-rs/op-alloy/issues/362))

### Features

- [interop] Define `ExecutingMessage` wrapper ([#361](https://github.com/alloy-rs/op-alloy/issues/361))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- [interop] Define `ExecutingMessage` wrapper ([#361](https://github.com/alloy-rs/op-alloy/issues/361))
- [interop] Define supervisor API ([#359](https://github.com/alloy-rs/op-alloy/pull/359))
- [interop] Define `ExecutingMessage` wrapper ([#361](https://github.com/alloy-rs/op-alloy/issues/361))

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These are all automated - changes made by running cargo release

- [protocol] Compressors with Mocked Brotli Streaming ([#335](https://github.com/alloy-rs/op-alloy/issues/335))
- [protocol] Interop Types ([#352](https://github.com/alloy-rs/op-alloy/issues/352))

### Miscellaneous Tasks

- [ci] Check wasm compilation for `op-alloy-rpc-types` in CI ([#357](https://github.com/alloy-rs/op-alloy/issues/357))
- [ci] Update target `wasm32-wasi` to `wasm32-wasip1` for ci ([#354](https://github.com/alloy-rs/op-alloy/issues/354))
- [rpc] `no_std` support `op-alloy-rpc-jsonrpsee` ([#356](https://github.com/alloy-rs/op-alloy/issues/356))

## [0.9.0](https://github.com/alloy-rs/op-alloy
/releases/tag/v0.9.0) - 2024-12-30

Expand All @@ -14,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.9.0
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what is the purpose for this here?

- Make clippy happy ([#349](https://github.com/alloy-rs/op-alloy/issues/349))

## [0.8.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.9.0"
version = "0.9.1"
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.9.0", path = "crates/genesis", default-features = false }
op-alloy-protocol = { version = "0.9.0", path = "crates/protocol", default-features = false }
op-alloy-consensus = { version = "0.9.0", path = "crates/consensus", default-features = false }
op-alloy-network = { version = "0.9.0", path = "crates/network", default-features = false }
op-alloy-provider = { version = "0.9.0", path = "crates/provider", default-features = false }
op-alloy-registry = { version = "0.9.0", path = "crates/registry", default-features = false }
op-alloy-rpc-types = { version = "0.9.0", path = "crates/rpc-types", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.9.0", path = "crates/rpc-jsonrpsee", default-features = false }
op-alloy-rpc-types-engine = { version = "0.9.0", path = "crates/rpc-types-engine", default-features = false }
op-alloy-genesis = { version = "0.9.1", path = "crates/genesis", default-features = false }
op-alloy-protocol = { version = "0.9.1", path = "crates/protocol", default-features = false }
op-alloy-consensus = { version = "0.9.1", path = "crates/consensus", default-features = false }
op-alloy-network = { version = "0.9.1", path = "crates/network", default-features = false }
op-alloy-provider = { version = "0.9.1", path = "crates/provider", default-features = false }
op-alloy-registry = { version = "0.9.1", path = "crates/registry", default-features = false }
op-alloy-rpc-types = { version = "0.9.1", path = "crates/rpc-types", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.9.1", path = "crates/rpc-jsonrpsee", default-features = false }
op-alloy-rpc-types-engine = { version = "0.9.1", path = "crates/rpc-types-engine", default-features = false }

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