Skip to content

Commit 56ec91b

Browse files
committed
chore: release 0.8.2
1 parent 96d4d86 commit 56ec91b

12 files changed

Lines changed: 75 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06
9+
10+
### Bug Fixes
11+
12+
- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727))
13+
14+
### Documentation
15+
16+
- [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726))
17+
818
## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06
919

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

2131
### Miscellaneous Tasks
2232

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

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.8.1"
6+
version = "0.8.2"
77
edition = "2021"
88
rust-version = "1.79"
99
authors = ["Alloy Contributors"]
@@ -39,16 +39,16 @@ all = "warn"
3939

4040
[workspace.dependencies]
4141
# workspace crates
42-
alloy-core = { version = "0.8.1", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.1", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.1", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.1", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.1", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.1", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.1", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.1", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.1", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.1", path = "crates/syn-solidity", default-features = false }
42+
alloy-core = { version = "0.8.2", path = "crates/core", default-features = false }
43+
alloy-dyn-abi = { version = "0.8.2", path = "crates/dyn-abi", default-features = false }
44+
alloy-json-abi = { version = "0.8.2", path = "crates/json-abi", default-features = false }
45+
alloy-primitives = { version = "0.8.2", path = "crates/primitives", default-features = false }
46+
alloy-sol-macro = { version = "0.8.2", path = "crates/sol-macro", default-features = false }
47+
alloy-sol-macro-input = { version = "0.8.2", path = "crates/sol-macro-input", default-features = false }
48+
alloy-sol-macro-expander = { version = "0.8.2", path = "crates/sol-macro-expander", default-features = false }
49+
alloy-sol-type-parser = { version = "0.8.2", path = "crates/sol-type-parser", default-features = false }
50+
alloy-sol-types = { version = "0.8.2", path = "crates/sol-types", default-features = false }
51+
syn-solidity = { version = "0.8.2", path = "crates/syn-solidity", default-features = false }
5252

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

crates/core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

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

10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.1
13+
1014
### Refactor
1115

1216
- Remove `Signature` generic ([#719](https://github.com/alloy-rs/core/issues/719))

crates/dyn-abi/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06
9+
10+
### Bug Fixes
11+
12+
- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727))
13+
14+
## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.1
19+
820
## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21
921

1022
### Bug Fixes

crates/json-abi/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

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

14+
### Miscellaneous Tasks
15+
16+
- Release 0.8.1
17+
1418
## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21
1519

1620
### Bug Fixes

crates/primitives/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.2](https://github.com/alloy-rs/core/releases/tag/v0.8.2) - 2024-09-06
9+
10+
### Bug Fixes
11+
12+
- `no_std` and workflow ([#727](https://github.com/alloy-rs/core/issues/727))
13+
14+
### Documentation
15+
16+
- [primitives] Document features in `wrap_fixed_bytes`-generated types ([#726](https://github.com/alloy-rs/core/issues/726))
17+
818
## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06
919

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

30+
### Miscellaneous Tasks
31+
32+
- Release 0.8.1
33+
2034
### Performance
2135

2236
- [primitives] Improve checksum algorithm ([#713](https://github.com/alloy-rs/core/issues/713))

crates/sol-macro-expander/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Miscellaneous Tasks
1515

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

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

crates/sol-macro-input/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.8.1](https://github.com/alloy-rs/core/releases/tag/v0.8.1) - 2024-09-06
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.1
13+
814
## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21
915

1016
### Features

crates/sol-macro/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Miscellaneous Tasks
1111

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

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

crates/sol-type-parser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

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

14+
### Miscellaneous Tasks
15+
16+
- Release 0.8.1
17+
1418
## [0.8.0](https://github.com/alloy-rs/core/releases/tag/v0.8.0) - 2024-08-21
1519

1620
### Bug Fixes

0 commit comments

Comments
 (0)