Skip to content

Commit a52894d

Browse files
committed
chore: release 0.8.17
1 parent ac59b51 commit a52894d

File tree

12 files changed

+153
-11
lines changed

12 files changed

+153
-11
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,31 @@ 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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Bug Fixes
11+
12+
- Coerce pow overflow ([#838](https://github.com/alloy-rs/core/issues/838))
13+
14+
### Documentation
15+
16+
- Typos ([#847](https://github.com/alloy-rs/core/issues/847))
17+
- [sol-macro] Document visibility and state mutability ([#846](https://github.com/alloy-rs/core/issues/846))
18+
19+
### Features
20+
21+
- [sol-macro] Translate contract types to address ([#842](https://github.com/alloy-rs/core/issues/842))
22+
- Support 0x in hex! and similar macros ([#841](https://github.com/alloy-rs/core/issues/841))
23+
- [sol-macro] Evaluate array sizes ([#840](https://github.com/alloy-rs/core/issues/840))
24+
- [primitives] Re-export foldhash ([#839](https://github.com/alloy-rs/core/issues/839))
25+
- Re-export rayon traits implementations ([#836](https://github.com/alloy-rs/core/issues/836))
26+
27+
### Testing
28+
29+
- [sol-macro] Add a test for missing_docs ([#845](https://github.com/alloy-rs/core/issues/845))
30+
- Re-enable miri on foldhash ([#844](https://github.com/alloy-rs/core/issues/844))
31+
- [sol-macro] Add a test for namespaced types ([#843](https://github.com/alloy-rs/core/issues/843))
32+
833
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
934

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

2146
### Miscellaneous Tasks
2247

48+
- Release 0.8.16
2349
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
2450
- Add clone_inner ([#825](https://github.com/alloy-rs/core/issues/825))
2551
- Shorten map type alias names ([#824](https://github.com/alloy-rs/core/issues/824))

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.16"
6+
version = "0.8.17"
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.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 }
42+
alloy-core = { version = "0.8.17", path = "crates/core", default-features = false }
43+
alloy-dyn-abi = { version = "0.8.17", path = "crates/dyn-abi", default-features = false }
44+
alloy-json-abi = { version = "0.8.17", path = "crates/json-abi", default-features = false }
45+
alloy-primitives = { version = "0.8.17", path = "crates/primitives", default-features = false }
46+
alloy-sol-macro = { version = "0.8.17", path = "crates/sol-macro", default-features = false }
47+
alloy-sol-macro-input = { version = "0.8.17", path = "crates/sol-macro-input", default-features = false }
48+
alloy-sol-macro-expander = { version = "0.8.17", path = "crates/sol-macro-expander", default-features = false }
49+
alloy-sol-type-parser = { version = "0.8.17", path = "crates/sol-type-parser", default-features = false }
50+
alloy-sol-types = { version = "0.8.17", path = "crates/sol-types", default-features = false }
51+
syn-solidity = { version = "0.8.17", 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
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- Re-export `rayon` feature ([#827](https://github.com/alloy-rs/core/issues/827))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.8.16
17+
1418
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
1519

1620
### Miscellaneous Tasks

crates/dyn-abi/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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Bug Fixes
11+
12+
- Coerce pow overflow ([#838](https://github.com/alloy-rs/core/issues/838))
13+
14+
### Features
15+
16+
- Support 0x in hex! and similar macros ([#841](https://github.com/alloy-rs/core/issues/841))
17+
818
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
919

1020
### Features
@@ -13,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1323

1424
### Miscellaneous Tasks
1525

26+
- Release 0.8.16
1627
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
1728

1829
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09

crates/json-abi/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.16
1213
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
1314

1415
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09

crates/primitives/CHANGELOG.md

Lines changed: 13 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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Features
11+
12+
- Support 0x in hex! and similar macros ([#841](https://github.com/alloy-rs/core/issues/841))
13+
- [primitives] Re-export foldhash ([#839](https://github.com/alloy-rs/core/issues/839))
14+
- Re-export rayon traits implementations ([#836](https://github.com/alloy-rs/core/issues/836))
15+
16+
### Testing
17+
18+
- Re-enable miri on foldhash ([#844](https://github.com/alloy-rs/core/issues/844))
19+
820
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
921

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

1931
### Miscellaneous Tasks
2032

33+
- Release 0.8.16
2134
- Clippy ([#834](https://github.com/alloy-rs/core/issues/834))
2235
- Add clone_inner ([#825](https://github.com/alloy-rs/core/issues/825))
2336
- Shorten map type alias names ([#824](https://github.com/alloy-rs/core/issues/824))

crates/sol-macro-expander/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Features
11+
12+
- [sol-macro] Translate contract types to address ([#842](https://github.com/alloy-rs/core/issues/842))
13+
- [sol-macro] Evaluate array sizes ([#840](https://github.com/alloy-rs/core/issues/840))
14+
15+
### Testing
16+
17+
- [sol-macro] Add a test for missing_docs ([#845](https://github.com/alloy-rs/core/issues/845))
18+
19+
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
20+
21+
### Miscellaneous Tasks
22+
23+
- Release 0.8.16
24+
825
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
926

1027
### Miscellaneous Tasks

crates/sol-macro-input/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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Documentation
11+
12+
- Typos ([#847](https://github.com/alloy-rs/core/issues/847))
13+
14+
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.16
19+
820
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
921

1022
### Miscellaneous Tasks

crates/sol-macro/CHANGELOG.md

Lines changed: 16 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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Documentation
11+
12+
- [sol-macro] Document visibility and state mutability ([#846](https://github.com/alloy-rs/core/issues/846))
13+
14+
### Features
15+
16+
- Support 0x in hex! and similar macros ([#841](https://github.com/alloy-rs/core/issues/841))
17+
18+
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.8.16
23+
824
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
925

1026
### Miscellaneous Tasks

crates/sol-type-parser/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.17](https://github.com/alloy-rs/core/releases/tag/v0.8.17) - 2025-01-04
9+
10+
### Bug Fixes
11+
12+
- Coerce pow overflow ([#838](https://github.com/alloy-rs/core/issues/838))
13+
14+
## [0.8.16](https://github.com/alloy-rs/core/releases/tag/v0.8.16) - 2025-01-01
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.16
19+
820
## [0.8.15](https://github.com/alloy-rs/core/releases/tag/v0.8.15) - 2024-12-09
921

1022
### Miscellaneous Tasks

0 commit comments

Comments
 (0)