Skip to content

Commit

Permalink
release: 0.1.1 (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell authored Jan 9, 2025
1 parent 2e9a61c commit 8bccd67
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 9 deletions.
36 changes: 34 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,19 @@ 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.0](https://github.com/op-rs/maili
/releases/tag/v0.1.0) - 2025-01-08
## [0.1.1](https://github.com/op-rs/maili
/releases/tag/v0.1.1) - 2025-01-09

### Bug Fixes

- [protocol] Channel ID Randomization ([#13](https://github.com/op-rs/maili/issues/13))
- Channel id randomization
- Fixes
- Fixes
- Only use rand in std
- [protocol] Randomize channel out id on reset
- Fix compile maili-rpc-jsonrpsee to wasm32-unkown-unkown
- [docs] Update `maili-registry` version in readme ([#19](https://github.com/op-rs/maili/issues/19))
- Fixes
- [registry] Reset version of registry in workspace manifest and fix book links ([#7](https://github.com/op-rs/maili/issues/7))
- Fix reset version of registry in workspace manifest, and book links
Expand Down Expand Up @@ -73,6 +81,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Dependencies

- [deps] Bump op-alloy to 0.9.2 ([#25](https://github.com/op-rs/maili/issues/25))
- Bump op-alloy to 0.9.2
- Quick Version Bumps ([#362](https://github.com/op-rs/maili/issues/362))
- Bump alloy 0.9 ([#350](https://github.com/op-rs/maili/issues/350))
- Bump alloy 081 ([#344](https://github.com/op-rs/maili/issues/344))
Expand Down Expand Up @@ -236,6 +246,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- 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))
- [rpc] Migrate `alloy-rs/op-alloy-rpc-jsonrpsee`->`op-rs/maili-rpc-jsonrpsee` ([#24](https://github.com/op-rs/maili/issues/24))
- [meta] Update issue template to include provider ([#17](https://github.com/op-rs/maili/issues/17))
- Fix README Shields ([#11](https://github.com/op-rs/maili/issues/11))
- Crate Shields ([#9](https://github.com/op-rs/maili/issues/9))
- Crate badges
- Cargo Manifest Cleanup ([#4](https://github.com/op-rs/maili/issues/4))
- Maili Re-export Crate ([#6](https://github.com/op-rs/maili/issues/6))
- [engine] Migrate types in engine rpc types from `op-alloy` ([#5](https://github.com/op-rs/maili/issues/5))
Expand Down Expand Up @@ -362,6 +380,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Other

- Merge branch 'main' into emhane/supervsior-api
- Smol perf improvement SupervisorApi, pass slice instead of vec as param
- Update doc headers
- Update doc header
- Migrate alloy-rs/op-alloy-rpc-jsonrpsee->op-rs/maili-rpc-jsonrpsee
- Update issue template to include provider
- Update maili-registry version in readme
- Update README.md
- 0.1.0 ([#8](https://github.com/op-rs/maili/issues/8))
- 0.1.0
- Merge branch 'main' into rf/cargo-cleanup
- Add rpc-types-engine
- Merge branch 'main' into rf/re-export-crate
Expand Down Expand Up @@ -432,6 +460,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Some cleanup
- Initial commit

### Performance

- [rpc] Smol perf improvement `SupervisorApi`, pass slice instead of vec as param ([#28](https://github.com/op-rs/maili/issues/28))

### Refactor

- Use native types
Expand Down
10 changes: 5 additions & 5 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.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.81"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -36,10 +36,10 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# Workspace
maili-protocol = { version = "0.1.0", path = "crates/protocol", default-features = false }
maili-provider = { version = "0.1.0", path = "crates/provider", default-features = false }
maili-registry = { version = "0.1.0", path = "crates/registry", default-features = false }
maili-rpc-types-engine = { version = "0.1.0", path = "crates/rpc-types-engine", default-features = false }
maili-protocol = { version = "0.1.1", path = "crates/protocol", default-features = false }
maili-provider = { version = "0.1.1", path = "crates/provider", default-features = false }
maili-registry = { version = "0.1.1", path = "crates/registry", default-features = false }
maili-rpc-types-engine = { version = "0.1.1", path = "crates/rpc-types-engine", default-features = false }

# OP-Alloy
op-alloy-genesis = { version = "0.9.2", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ async-trait.workspace = true

[dev-dependencies]
# `serde` must be explicitly enabled to test with `--no-default-features`
maili-protocol = { workspace = true, features = ["serde"] }
maili-protocol = { workspace = true, features = ["serde"] }
2 changes: 1 addition & 1 deletion crates/rpc-types-engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ std = ["alloy-primitives/std"]
serde = [
"dep:serde",
"alloy-primitives/serde"
]
]

0 comments on commit 8bccd67

Please sign in to comment.