Skip to content

Commit

Permalink
chore: release 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Sep 6, 2024
1 parent 96d4d86 commit 56ec91b
Show file tree
Hide file tree
Showing 12 changed files with 75 additions and 11 deletions.
11 changes: 11 additions & 0 deletions 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.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Bug Fixes

- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727))

### Documentation

- [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726))

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

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

### Miscellaneous Tasks

- Release 0.8.1
- Clippy
- Use proc-macro-error2 ([#723](https://github.com/alloy-rs/core/issues/723))

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.1"
version = "0.8.2"
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.1", path = "crates/core", default-features = false }
alloy-dyn-abi = { version = "0.8.1", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.8.1", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.8.1", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.8.1", path = "crates/sol-macro", default-features = false }
alloy-sol-macro-input = { version = "0.8.1", path = "crates/sol-macro-input", default-features = false }
alloy-sol-macro-expander = { version = "0.8.1", path = "crates/sol-macro-expander", default-features = false }
alloy-sol-type-parser = { version = "0.8.1", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.8.1", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.8.1", path = "crates/syn-solidity", default-features = false }
alloy-core = { version = "0.8.2", path = "crates/core", default-features = false }
alloy-dyn-abi = { version = "0.8.2", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.8.2", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.8.2", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.8.2", path = "crates/sol-macro", default-features = false }
alloy-sol-macro-input = { version = "0.8.2", path = "crates/sol-macro-input", default-features = false }
alloy-sol-macro-expander = { version = "0.8.2", path = "crates/sol-macro-expander", default-features = false }
alloy-sol-type-parser = { version = "0.8.2", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.8.2", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.8.2", path = "crates/syn-solidity", default-features = false }

# serde
serde = { version = "1.0", default-features = false, features = ["alloc"] }
Expand Down
4 changes: 4 additions & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

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

### Miscellaneous Tasks

- Release 0.8.1

### Refactor

- Remove `Signature` generic ([#719](https://github.com/alloy-rs/core/issues/719))
Expand Down
12 changes: 12 additions & 0 deletions crates/dyn-abi/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.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Bug Fixes

- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727))

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

### Miscellaneous Tasks

- Release 0.8.1

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes
Expand Down
4 changes: 4 additions & 0 deletions crates/json-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Bump MSRV to 1.79 ([#712](https://github.com/alloy-rs/core/issues/712))

### Miscellaneous Tasks

- Release 0.8.1

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes
Expand Down
14 changes: 14 additions & 0 deletions crates/primitives/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.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06

### Bug Fixes

- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727))

### Documentation

- [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726))

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

### Bug Fixes
Expand All @@ -17,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Revert "chore(deps): bump derive_more to 1.0"
- [deps] Bump derive_more to 1.0

### Miscellaneous Tasks

- Release 0.8.1

### Performance

- [primitives] Improve checksum algorithm ([#713](https://github.com/alloy-rs/core/issues/713))
Expand Down
1 change: 1 addition & 0 deletions crates/sol-macro-expander/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.8.1
- Use proc-macro-error2 ([#723](https://github.com/alloy-rs/core/issues/723))

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21
Expand Down
6 changes: 6 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.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06

### Miscellaneous Tasks

- Release 0.8.1

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Features
Expand Down
1 change: 1 addition & 0 deletions crates/sol-macro/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.8.1
- Use proc-macro-error2 ([#723](https://github.com/alloy-rs/core/issues/723))

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21
Expand Down
4 changes: 4 additions & 0 deletions crates/sol-type-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- [sol-type-parser] Winnow std error ([#720](https://github.com/alloy-rs/core/issues/720))

### Miscellaneous Tasks

- Release 0.8.1

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Bug Fixes
Expand Down
1 change: 1 addition & 0 deletions crates/sol-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Miscellaneous Tasks

- Release 0.8.1
- Clippy

### Testing
Expand Down
6 changes: 6 additions & 0 deletions crates/syn-solidity/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.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06

### Miscellaneous Tasks

- Release 0.8.1

## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21

### Miscellaneous Tasks
Expand Down

0 comments on commit 56ec91b

Please sign in to comment.