Skip to content

Commit

Permalink
chore: release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Aug 21, 2024
1 parent 2a0bfff commit 0275f88
Show file tree
Hide file tree
Showing 12 changed files with 172 additions and 11 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,42 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes

- Parsing stack overflow ([#703](https://github.com/alloy-rs/core/issues/703))

### Dependencies

- [deps] Bump proptest-derive ([#708](https://github.com/alloy-rs/core/issues/708))

### Documentation

- Typo

### Features

- Derive ser deser on `Sealed` ([#710](https://github.com/alloy-rs/core/issues/710))
- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))
- Derive `Hash` for `Sealed` ([#707](https://github.com/alloy-rs/core/issues/707))
- [sol-types] Implement traits for longer tuples ([#699](https://github.com/alloy-rs/core/issues/699))

### Miscellaneous Tasks

- [primitives] Re-use ruint mask function ([#698](https://github.com/alloy-rs/core/issues/698))
- Derive hash for parity ([#686](https://github.com/alloy-rs/core/issues/686))
- Add some TODO comments

### Other

- Implement specific bit types for integers ([#677](https://github.com/alloy-rs/core/issues/677))
- Add testcase for overflowing_from_sign_and_abs ([#696](https://github.com/alloy-rs/core/issues/696))

### Styling

- Remove `ethereum_ssz` dependency ([#701](https://github.com/alloy-rs/core/issues/701))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Fix unnameable-types ([#675](https://github.com/alloy-rs/core/issues/675))
- [sol-macro] Allow clippy all when emitting contract bytecode ([#674](https://github.com/alloy-rs/core/issues/674))
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.7.7"
version = "0.8.0"
edition = "2021"
rust-version = "1.65"
authors = ["Alloy Contributors"]
Expand Down Expand Up @@ -39,16 +39,16 @@ all = "warn"

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

# serde
serde = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down
7 changes: 7 additions & 0 deletions crates/core/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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Styling

- Remove `ethereum_ssz` dependency ([#701](https://github.com/alloy-rs/core/issues/701))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))

## [0.7.4](https://github.com/alloy-rs/core/releases/tag/v0.7.4) - 2024-05-14
Expand Down
15 changes: 15 additions & 0 deletions crates/dyn-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes

- Parsing stack overflow ([#703](https://github.com/alloy-rs/core/issues/703))

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))

### Other

- Implement specific bit types for integers ([#677](https://github.com/alloy-rs/core/issues/677))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Fix unnameable-types ([#675](https://github.com/alloy-rs/core/issues/675))

Expand Down
11 changes: 11 additions & 0 deletions crates/json-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes

- Parsing stack overflow ([#703](https://github.com/alloy-rs/core/issues/703))

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Fix unnameable-types ([#675](https://github.com/alloy-rs/core/issues/675))

Expand Down
34 changes: 34 additions & 0 deletions crates/primitives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,39 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes

- Parsing stack overflow ([#703](https://github.com/alloy-rs/core/issues/703))

### Dependencies

- [deps] Bump proptest-derive ([#708](https://github.com/alloy-rs/core/issues/708))

### Documentation

- Typo

### Features

- Derive ser deser on `Sealed` ([#710](https://github.com/alloy-rs/core/issues/710))
- Derive `Hash` for `Sealed` ([#707](https://github.com/alloy-rs/core/issues/707))

### Miscellaneous Tasks

- [primitives] Re-use ruint mask function ([#698](https://github.com/alloy-rs/core/issues/698))
- Derive hash for parity ([#686](https://github.com/alloy-rs/core/issues/686))

### Other

- Implement specific bit types for integers ([#677](https://github.com/alloy-rs/core/issues/677))
- Add testcase for overflowing_from_sign_and_abs ([#696](https://github.com/alloy-rs/core/issues/696))

### Styling

- Remove `ethereum_ssz` dependency ([#701](https://github.com/alloy-rs/core/issues/701))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))

### Styling
Expand Down
11 changes: 11 additions & 0 deletions crates/sol-macro-expander/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))

### Other

- Implement specific bit types for integers ([#677](https://github.com/alloy-rs/core/issues/677))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- [sol-macro] Allow clippy all when emitting contract bytecode ([#674](https://github.com/alloy-rs/core/issues/674))

Expand Down
7 changes: 7 additions & 0 deletions crates/sol-macro-input/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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Fix unnameable-types ([#675](https://github.com/alloy-rs/core/issues/675))
- [sol-types] Exit early if Abigen input is invalid
Expand Down
7 changes: 7 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Swap sol macro doctests symlink ([#657](https://github.com/alloy-rs/core/issues/657))

Expand Down
11 changes: 11 additions & 0 deletions crates/sol-type-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes

- Parsing stack overflow ([#703](https://github.com/alloy-rs/core/issues/703))

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))

### Styling
Expand Down
20 changes: 20 additions & 0 deletions crates/sol-types/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.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Dependencies

- [deps] Bump proptest-derive ([#708](https://github.com/alloy-rs/core/issues/708))

### Features

- [sol-macro] Support namespaces ([#694](https://github.com/alloy-rs/core/issues/694))
- [sol-types] Implement traits for longer tuples ([#699](https://github.com/alloy-rs/core/issues/699))

### Miscellaneous Tasks

- Add some TODO comments

### Other

- Implement specific bit types for integers ([#677](https://github.com/alloy-rs/core/issues/677))

## [0.7.7](https://github.com/alloy-rs/core/releases/tag/v0.7.7) - 2024-07-08

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

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Fix unnameable-types ([#675](https://github.com/alloy-rs/core/issues/675))
- Swap sol macro doctests symlink ([#657](https://github.com/alloy-rs/core/issues/657))
Expand Down
1 change: 1 addition & 0 deletions crates/syn-solidity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.7.7
- Use workspace.lints ([#676](https://github.com/alloy-rs/core/issues/676))
- Fix unnameable-types ([#675](https://github.com/alloy-rs/core/issues/675))

Expand Down

0 comments on commit 0275f88

Please sign in to comment.