Skip to content

Commit 1960dce

Browse files
committed
chore: release 0.8.16
1 parent d3e73c4 commit 1960dce

File tree

12 files changed

+288
-24
lines changed

12 files changed

+288
-24
lines changed

CHANGELOG.md

Lines changed: 57 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,35 @@ 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
9+
10+
### Bug Fixes
11+
12+
- Re-enable foldhash on zkvm ([#833](https://github.com/alloy-rs/core/issues/833))
13+
- Allow non-boolean v values for PrimitiveSignature ([#832](https://github.com/alloy-rs/core/issues/832))
14+
- [syn-solidity] Correctly parse invalid bytes* etc as custom ([#830](https://github.com/alloy-rs/core/issues/830))
15+
16+
### Features
17+
18+
- [dyn-abi] Support parse scientific number ([#835](https://github.com/alloy-rs/core/issues/835))
19+
- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827))
20+
21+
### Miscellaneous Tasks
22+
23+
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
24+
- Add clone_inner ([#825](https://github.com/alloy-rs/core/issues/825))
25+
- Shorten map type alias names ([#824](https://github.com/alloy-rs/core/issues/824))
26+
- [primitives] Remove rustc-hash workaround ([#822](https://github.com/alloy-rs/core/issues/822))
27+
28+
### Other
29+
30+
- Move deny to ci ([#821](https://github.com/alloy-rs/core/issues/821))
31+
832
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
933

1034
### Miscellaneous Tasks
1135

36+
- Release 0.8.15
1237
- Mark `Signature` as deprecated ([#819](https://github.com/alloy-rs/core/issues/819))
1338
- AsRef for Log ([#820](https://github.com/alloy-rs/core/issues/820))
1439
- Update release.toml ([#817](https://github.com/alloy-rs/core/issues/817))
@@ -36,35 +61,60 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3661
### Bug Fixes
3762

3863
- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812))
39-
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
40-
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
4164

4265
### Dependencies
4366

4467
- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808))
4568

69+
### Features
70+
71+
- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
72+
73+
### Miscellaneous Tasks
74+
75+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
76+
77+
### Other
78+
79+
- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
80+
81+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
82+
83+
### Bug Fixes
84+
85+
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
86+
87+
### Features
88+
89+
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
90+
91+
### Miscellaneous Tasks
92+
93+
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
94+
95+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
96+
97+
### Bug Fixes
98+
99+
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
100+
46101
### Documentation
47102

48103
- Update ethers-rs README note ([#798](https://github.com/alloy-rs/core/issues/798))
49104

50105
### Features
51106

52-
- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
53-
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
54107
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
55108
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
56109

57110
### Miscellaneous Tasks
58111

59-
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
60-
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
61112
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
62113
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
63114
- [meta] Update SECURITY.md ([#793](https://github.com/alloy-rs/core/issues/793))
64115

65116
### Other
66117

67-
- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
68118
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))
69119
- Add success job ([#795](https://github.com/alloy-rs/core/issues/795))
70120

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.15"
6+
version = "0.8.16"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]
@@ -39,16 +39,16 @@ all = "warn"
3939

4040
[workspace.dependencies]
4141
# workspace crates
42-
alloy-core = { version = "0.8.15", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.15", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.15", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.15", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.15", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.15", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.15", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.15", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.15", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.15", path = "crates/syn-solidity", default-features = false }
42+
alloy-core = { version = "0.8.16", path = "crates/core", default-features = false }
43+
alloy-dyn-abi = { version = "0.8.16", path = "crates/dyn-abi", default-features = false }
44+
alloy-json-abi = { version = "0.8.16", path = "crates/json-abi", default-features = false }
45+
alloy-primitives = { version = "0.8.16", path = "crates/primitives", default-features = false }
46+
alloy-sol-macro = { version = "0.8.16", path = "crates/sol-macro", default-features = false }
47+
alloy-sol-macro-input = { version = "0.8.16", path = "crates/sol-macro-input", default-features = false }
48+
alloy-sol-macro-expander = { version = "0.8.16", path = "crates/sol-macro-expander", default-features = false }
49+
alloy-sol-type-parser = { version = "0.8.16", path = "crates/sol-type-parser", default-features = false }
50+
alloy-sol-types = { version = "0.8.16", path = "crates/sol-types", default-features = false }
51+
syn-solidity = { version = "0.8.16", 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: 22 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
9+
10+
### Features
11+
12+
- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827))
13+
14+
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.15
19+
820
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
921

1022
### Miscellaneous Tasks
@@ -16,7 +28,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1628
### Miscellaneous Tasks
1729

1830
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
31+
32+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
33+
34+
### Miscellaneous Tasks
35+
1936
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
37+
38+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
39+
40+
### Miscellaneous Tasks
41+
2042
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
2143

2244
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28

crates/dyn-abi/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
9+
10+
### Features
11+
12+
- [dyn-abi] Support parse scientific number ([#835](https://github.com/alloy-rs/core/issues/835))
13+
14+
### Miscellaneous Tasks
15+
16+
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
17+
18+
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.8.15
23+
824
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
925

1026
### Dependencies
@@ -28,7 +44,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2844
### Miscellaneous Tasks
2945

3046
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
47+
48+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
49+
50+
### Miscellaneous Tasks
51+
3152
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
53+
54+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
55+
56+
### Miscellaneous Tasks
57+
3258
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
3359

3460
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28

crates/json-abi/CHANGELOG.md

Lines changed: 24 additions & 2 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
9+
10+
### Miscellaneous Tasks
11+
12+
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
13+
14+
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.15
19+
820
## [0.8.14](https://github.com/alloy-rs/core/releases/tag/v0.8.14) - 2024-11-28
921

1022
### Miscellaneous Tasks
@@ -13,14 +25,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1325

1426
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
1527

28+
### Miscellaneous Tasks
29+
30+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
31+
32+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
33+
34+
### Miscellaneous Tasks
35+
36+
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
37+
38+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
39+
1640
### Features
1741

1842
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
1943

2044
### Miscellaneous Tasks
2145

22-
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
23-
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
2446
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
2547
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
2648

crates/primitives/CHANGELOG.md

Lines changed: 42 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,29 @@ 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.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
9+
10+
### Bug Fixes
11+
12+
- Re-enable foldhash on zkvm ([#833](https://github.com/alloy-rs/core/issues/833))
13+
- Allow non-boolean v values for PrimitiveSignature ([#832](https://github.com/alloy-rs/core/issues/832))
14+
15+
### Features
16+
17+
- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827))
18+
19+
### Miscellaneous Tasks
20+
21+
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
22+
- Add clone_inner ([#825](https://github.com/alloy-rs/core/issues/825))
23+
- Shorten map type alias names ([#824](https://github.com/alloy-rs/core/issues/824))
24+
- [primitives] Remove rustc-hash workaround ([#822](https://github.com/alloy-rs/core/issues/822))
25+
826
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
927

1028
### Miscellaneous Tasks
1129

30+
- Release 0.8.15
1231
- Mark `Signature` as deprecated ([#819](https://github.com/alloy-rs/core/issues/819))
1332
- AsRef for Log ([#820](https://github.com/alloy-rs/core/issues/820))
1433

@@ -28,25 +47,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2847

2948
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
3049

50+
### Miscellaneous Tasks
51+
52+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
53+
54+
### Other
55+
56+
- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
57+
58+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
59+
3160
### Bug Fixes
3261

3362
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
34-
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
3563

3664
### Features
3765

3866
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
39-
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
4067

4168
### Miscellaneous Tasks
4269

43-
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
4470
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
71+
72+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
73+
74+
### Bug Fixes
75+
76+
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
77+
78+
### Features
79+
80+
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
81+
82+
### Miscellaneous Tasks
83+
4584
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
4685

4786
### Other
4887

49-
- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
5088
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))
5189

5290
### Performance

crates/sol-macro-expander/CHANGELOG.md

Lines changed: 14 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.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
99

10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.15
13+
1014
### Other
1115

1216
- Remove unsafe code from macro expansions ([#818](https://github.com/alloy-rs/core/issues/818))
@@ -30,7 +34,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3034
### Miscellaneous Tasks
3135

3236
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
37+
38+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
39+
40+
### Miscellaneous Tasks
41+
3342
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
43+
44+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
45+
46+
### Miscellaneous Tasks
47+
3448
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
3549

3650
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28

0 commit comments

Comments
 (0)