Skip to content

Commit

Permalink
fix: maili-protocol cyclical dep (op-rs#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell authored Jan 10, 2025
1 parent b84a52d commit edab533
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ 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.1.2](https://github.com/op-rs/maili
/releases/tag/v0.1.2) - 2025-01-09
## [0.1.3](https://github.com/op-rs/maili
/releases/tag/v0.1.3) - 2025-01-10

### Bug Fixes

- [no-std] Fix broken test in `no_std` `maili-protocol` ([#38](https://github.com/op-rs/maili/issues/38))
- Add Crates to no_std Checks ([#32](https://github.com/op-rs/maili/issues/32))
- [maili] Missing Crates ([#34](https://github.com/op-rs/maili/issues/34))
- Missing scr ([#30](https://github.com/op-rs/maili/issues/30))
- [protocol] Channel ID Randomization ([#13](https://github.com/op-rs/maili/issues/13))
- Channel id randomization
Expand Down Expand Up @@ -118,6 +121,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Features

- [protocol] L1BlockInfo Accessors ([#39](https://github.com/op-rs/maili/issues/39))
- [interop] Define `ExecutingMessage` wrapper ([#361](https://github.com/op-rs/maili/issues/361))
- [protocol] Compressors with Mocked Brotli Streaming ([#335](https://github.com/op-rs/maili/issues/335))
- [protocol] Interop Types ([#352](https://github.com/op-rs/maili/issues/352))
Expand Down Expand Up @@ -247,6 +251,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- [rpc] Migrate json types from `op-alloy` ([#37](https://github.com/op-rs/maili/issues/37))
- [common] Migrate deposit source types from `op-alloy` ([#36](https://github.com/op-rs/maili/issues/36))
- Document Crate Releases ([#15](https://github.com/op-rs/maili/issues/15))
- Document crate releases
- [docs] Update doc headers ([#26](https://github.com/op-rs/maili/issues/26))
Expand Down Expand Up @@ -381,6 +387,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Other

- 0.1.2 ([#31](https://github.com/op-rs/maili/issues/31))
- 0.1.1 ([#29](https://github.com/op-rs/maili/issues/29))
- Merge branch 'main' into emhane/supervsior-api
- Smol perf improvement SupervisorApi, pass slice instead of vec as param
Expand Down
12 changes: 6 additions & 6 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.1.2"
version = "0.1.3"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,11 +36,11 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# Workspace
maili-common = { version = "0.1.2", path = "crates/common", default-features = false }
maili-protocol = { version = "0.1.2", path = "crates/protocol", default-features = false }
maili-provider = { version = "0.1.2", path = "crates/provider", default-features = false }
maili-registry = { version = "0.1.2", path = "crates/registry", default-features = false }
maili-rpc = { version = "0.1.2", path = "crates/rpc", default-features = false }
maili-common = { version = "0.1.3", path = "crates/common", default-features = false }
maili-protocol = { version = "0.1.3", path = "crates/protocol", default-features = false }
maili-provider = { version = "0.1.3", path = "crates/provider", default-features = false }
maili-registry = { version = "0.1.3", path = "crates/registry", default-features = false }
maili-rpc = { version = "0.1.3", path = "crates/rpc", default-features = false }

# OP-Alloy
op-alloy-genesis = { version = "0.9.2", default-features = false }
Expand Down
1 change: 0 additions & 1 deletion crates/protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ spin = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, features = ["fmt"], optional = true }

[dev-dependencies]
maili-protocol = { workspace = true, features = ["serde"] }
brotli = { workspace = true, features = ["std"] }
revm.workspace = true
spin.workspace = true
Expand Down

0 comments on commit edab533

Please sign in to comment.