Skip to content

Commit

Permalink
chore: release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jan 10, 2024
1 parent 49e347b commit e106bdc
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 9 deletions.
39 changes: 38 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,44 @@ 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.4](https://github.com/alloy-rs/core/releases/tag/v0.5.4) - 2023-12-28
## [0.6.0](https://github.com/alloy-rs/core/releases/tag/v0.6.0) - 2024-01-10

### Bug Fixes

- [primitives] Also apply EIP-155 to Parity::Parity ([#476](https://github.com/alloy-rs/core/issues/476))
- Clean the sealed ([#468](https://github.com/alloy-rs/core/issues/468))

### Dependencies

- [deps] Relax k256 requirement ([#481](https://github.com/alloy-rs/core/issues/481))
- [deps] Bump const-hex requirement ([#479](https://github.com/alloy-rs/core/issues/479))

### Documentation

- Update docs on parity ([#477](https://github.com/alloy-rs/core/issues/477))

### Features

- [json-abi] Add full_signature ([#480](https://github.com/alloy-rs/core/issues/480))
- [primitives] Add Signature type and utils ([#459](https://github.com/alloy-rs/core/issues/459))
- [primitives] Add a buffer type for address checksums ([#472](https://github.com/alloy-rs/core/issues/472))
- [dyn-abi] Improve hex error messages ([#474](https://github.com/alloy-rs/core/issues/474))
- [sol-type-parser] Improve error message for bad array size ([#470](https://github.com/alloy-rs/core/issues/470))
- [primitives] Add Keccak256 hasher struct ([#469](https://github.com/alloy-rs/core/issues/469))

### Miscellaneous Tasks

- Bless tests ([#478](https://github.com/alloy-rs/core/issues/478))
- Clippy uninlined_format_args, use_self ([#475](https://github.com/alloy-rs/core/issues/475))
- Touch up UDVT expansion ([#473](https://github.com/alloy-rs/core/issues/473))
- Move define_udt! decl macro to sol! proc macro ([#471](https://github.com/alloy-rs/core/issues/471))
- Release 0.5.4

### Refactor

- Log implementation ([#465](https://github.com/alloy-rs/core/issues/465))

## [0.5.4](https://github.com/alloy-rs/core/releases/tag/v0.5.4) - 2023-12-27

### Features

Expand Down
16 changes: 8 additions & 8 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.5.4"
version = "0.6.0"
edition = "2021"
rust-version = "1.65"
authors = ["Alloy Contributors"]
Expand All @@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# workspace crates
alloy-dyn-abi = { version = "0.5.4", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.5.4", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.5.4", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.5.4", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.5.4", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.5.4", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.5.4", path = "crates/syn-solidity", default-features = false }
alloy-dyn-abi = { version = "0.6.0", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.6.0", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.6.0", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.6.0", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.6.0", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.6.0", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.6.0", path = "crates/syn-solidity", default-features = false }

# serde
serde = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down

0 comments on commit e106bdc

Please sign in to comment.