Skip to content

Commit 79d0ef6

Browse files
committed
chore: release 0.8.26
1 parent 951758a commit 79d0ef6

File tree

12 files changed

+1389
-19
lines changed

12 files changed

+1389
-19
lines changed

CHANGELOG.md

Lines changed: 1290 additions & 8 deletions
Large diffs are not rendered by default.

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.25"
6+
version = "0.8.26"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]
@@ -35,16 +35,16 @@ all = "warn"
3535

3636
[workspace.dependencies]
3737
# workspace crates
38-
alloy-core = { version = "0.8.25", path = "crates/core", default-features = false }
39-
alloy-dyn-abi = { version = "0.8.25", path = "crates/dyn-abi", default-features = false }
40-
alloy-json-abi = { version = "0.8.25", path = "crates/json-abi", default-features = false }
41-
alloy-primitives = { version = "0.8.25", path = "crates/primitives", default-features = false }
42-
alloy-sol-macro = { version = "0.8.25", path = "crates/sol-macro", default-features = false }
43-
alloy-sol-macro-input = { version = "0.8.25", path = "crates/sol-macro-input", default-features = false }
44-
alloy-sol-macro-expander = { version = "0.8.25", path = "crates/sol-macro-expander", default-features = false }
45-
alloy-sol-type-parser = { version = "0.8.25", path = "crates/sol-type-parser", default-features = false }
46-
alloy-sol-types = { version = "0.8.25", path = "crates/sol-types", default-features = false }
47-
syn-solidity = { version = "0.8.25", path = "crates/syn-solidity", default-features = false }
38+
alloy-core = { version = "0.8.26", path = "crates/core", default-features = false }
39+
alloy-dyn-abi = { version = "0.8.26", path = "crates/dyn-abi", default-features = false }
40+
alloy-json-abi = { version = "0.8.26", path = "crates/json-abi", default-features = false }
41+
alloy-primitives = { version = "0.8.26", path = "crates/primitives", default-features = false }
42+
alloy-sol-macro = { version = "0.8.26", path = "crates/sol-macro", default-features = false }
43+
alloy-sol-macro-input = { version = "0.8.26", path = "crates/sol-macro-input", default-features = false }
44+
alloy-sol-macro-expander = { version = "0.8.26", path = "crates/sol-macro-expander", default-features = false }
45+
alloy-sol-type-parser = { version = "0.8.26", path = "crates/sol-type-parser", default-features = false }
46+
alloy-sol-types = { version = "0.8.26", path = "crates/sol-types", default-features = false }
47+
syn-solidity = { version = "0.8.26", path = "crates/syn-solidity", default-features = false }
4848

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

crates/core/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.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.25
13+
814
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
915

1016
### Miscellaneous Tasks

crates/dyn-abi/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ 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.26](https://github.com/alloy-rs/core/releases/tag/v0.8.26) - 2025-10-14
9+
10+
### Bug Fixes
11+
12+
- [dyn-abi] Don't panic when linearization is empty
13+
14+
### Miscellaneous Tasks
15+
16+
- Clippy
17+
- Add typos ([#991](https://github.com/alloy-rs/core/issues/991))
18+
19+
### Testing
20+
21+
- Remove invalid name
22+
23+
## [0.8.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
24+
25+
### Miscellaneous Tasks
26+
27+
- Release 0.8.25
28+
829
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
930

1031
### Miscellaneous Tasks

crates/json-abi/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.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.25
13+
814
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
915

1016
### Features

crates/primitives/CHANGELOG.md

Lines changed: 7 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.26](https://github.com/alloy-rs/core/releases/tag/v0.8.26) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Add typos ([#991](https://github.com/alloy-rs/core/issues/991))
13+
814
## [0.8.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
915

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

1521
### Miscellaneous Tasks
1622

23+
- Release 0.8.25
1724
- Add hash_ref function to sealed.rs ([#920](https://github.com/alloy-rs/core/issues/920))
1825

1926
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21

crates/sol-macro-expander/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.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.25
13+
814
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
915

1016
### Features

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.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.25
13+
814
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
915

1016
### Features

crates/sol-macro/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.26](https://github.com/alloy-rs/core/releases/tag/v0.8.26) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Add typos ([#991](https://github.com/alloy-rs/core/issues/991))
13+
14+
## [0.8.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.25
19+
820
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
921

1022
### Features

crates/sol-type-parser/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.25](https://github.com/alloy-rs/core/releases/tag/v0.8.25) - 2025-03-26
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.25
13+
814
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
915

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)