Skip to content

Commit

Permalink
chore: release 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Sep 25, 2024
1 parent 0b94089 commit 6e24f46
Show file tree
Hide file tree
Showing 12 changed files with 188 additions and 11 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Bug Fixes

- [json-abi] Normalize $ to _ in identifiers in to_sol ([#747](https://github.com/alloy-rs/core/issues/747))
- [json-abi] Correct to-sol for UDVT arrays in structs ([#745](https://github.com/alloy-rs/core/issues/745))
- [sol-types] Check signature in SolEvent if non-anonymous ([#741](https://github.com/alloy-rs/core/issues/741))

### Features

- [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743))
- Support Keccak with sha3 ([#737](https://github.com/alloy-rs/core/issues/737))

### Miscellaneous Tasks

- Remove unused unstable-doc feature

### Other

- Add custom serialization for Address ([#742](https://github.com/alloy-rs/core/issues/742))

### Testing

- Allow missing_docs in tests
- Add another dyn-abi test

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Bug Fixes
Expand All @@ -17,6 +43,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Prepare reth Signature migration to alloy ([#732](https://github.com/alloy-rs/core/issues/732))

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Bug Fixes
Expand Down
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"]
resolver = "2"

[workspace.package]
version = "0.8.3"
version = "0.8.4"
edition = "2021"
rust-version = "1.79"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -39,16 +39,16 @@ all = "warn"

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

# serde
serde = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down
21 changes: 21 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Features

- [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743))
- Support Keccak with sha3 ([#737](https://github.com/alloy-rs/core/issues/737))

### Miscellaneous Tasks

- Remove unused unstable-doc feature

### Testing

- Add another dyn-abi test

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
20 changes: 20 additions & 0 deletions crates/dyn-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Features

- [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743))

### Other

- Add custom serialization for Address ([#742](https://github.com/alloy-rs/core/issues/742))

### Testing

- Add another dyn-abi test

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Bug Fixes
Expand Down
17 changes: 17 additions & 0 deletions crates/json-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Bug Fixes

- [json-abi] Normalize $ to _ in identifiers in to_sol ([#747](https://github.com/alloy-rs/core/issues/747))
- [json-abi] Correct to-sol for UDVT arrays in structs ([#745](https://github.com/alloy-rs/core/issues/745))

### Features

- [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743))

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
19 changes: 19 additions & 0 deletions crates/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,31 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Features

- [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743))
- Support Keccak with sha3 ([#737](https://github.com/alloy-rs/core/issues/737))

### Miscellaneous Tasks

- Remove unused unstable-doc feature

### Other

- Add custom serialization for Address ([#742](https://github.com/alloy-rs/core/issues/742))

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Features

- Prepare reth Signature migration to alloy ([#732](https://github.com/alloy-rs/core/issues/732))

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Bug Fixes
Expand Down
10 changes: 10 additions & 0 deletions crates/sol-macro-expander/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Bug Fixes

- [sol-types] Check signature in SolEvent if non-anonymous ([#741](https://github.com/alloy-rs/core/issues/741))

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Bug Fixes
Expand All @@ -13,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [sol-macro] Namespaced custom type resolution ([#731](https://github.com/alloy-rs/core/issues/731))
- Parse selector hashes in `sol` macro ([#730](https://github.com/alloy-rs/core/issues/730))

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
12 changes: 12 additions & 0 deletions crates/sol-macro-input/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Bug Fixes

- [json-abi] Normalize $ to _ in identifiers in to_sol ([#747](https://github.com/alloy-rs/core/issues/747))

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
6 changes: 6 additions & 0 deletions crates/sol-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
12 changes: 12 additions & 0 deletions crates/sol-type-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Features

- [primitives] Implement `map` module ([#743](https://github.com/alloy-rs/core/issues/743))

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
16 changes: 16 additions & 0 deletions crates/sol-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Bug Fixes

- [json-abi] Normalize $ to _ in identifiers in to_sol ([#747](https://github.com/alloy-rs/core/issues/747))
- [json-abi] Correct to-sol for UDVT arrays in structs ([#745](https://github.com/alloy-rs/core/issues/745))
- [sol-types] Check signature in SolEvent if non-anonymous ([#741](https://github.com/alloy-rs/core/issues/741))

### Testing

- Allow missing_docs in tests

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Bug Fixes
Expand All @@ -13,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [sol-macro] Namespaced custom type resolution ([#731](https://github.com/alloy-rs/core/issues/731))
- Parse selector hashes in `sol` macro ([#730](https://github.com/alloy-rs/core/issues/730))

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down
14 changes: 14 additions & 0 deletions crates/syn-solidity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,26 @@ 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.8.4](https://github.com/alloy-rs/core/releases/tag/v0.8.4) - 2024-09-25

### Bug Fixes

- [json-abi] Correct to-sol for UDVT arrays in structs ([#745](https://github.com/alloy-rs/core/issues/745))

### Testing

- Allow missing_docs in tests

## [0.8.3](https://github.com/alloy-rs/core/releases/tag/v0.8.3) - 2024-09-10

### Bug Fixes

- [sol-macro] Correctly determine whether event parameters are hashes ([#735](https://github.com/alloy-rs/core/issues/735))

### Miscellaneous Tasks

- Release 0.8.3

## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Miscellaneous Tasks
Expand Down

0 comments on commit 6e24f46

Please sign in to comment.