Skip to content

Commit 6cdba41

Browse files
committed
chore: release 1.5.4
1 parent 99f79eb commit 6cdba41

File tree

12 files changed

+95
-11
lines changed

12 files changed

+95
-11
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ 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+
## [1.5.4](https://github.com/alloy-rs/core/releases/tag/v1.5.4) - 2026-01-28
9+
10+
### Miscellaneous Tasks
11+
12+
- [sol-macro] Use sha3 ([#1064](https://github.com/alloy-rs/core/issues/1064))
13+
14+
### Other
15+
16+
- Fix rkyv miri breakage ([#1066](https://github.com/alloy-rs/core/issues/1066))
17+
18+
### Performance
19+
20+
- [primitives] Use keccak_asm::Keccak256::digest ([#1067](https://github.com/alloy-rs/core/issues/1067))
21+
- perf(primitives): remove unnecessary keccak cache length hash computation ([#1065](https://github.com/alloy-rs/core/issues/1065))
22+
823
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
924

1025
### Dependencies
@@ -17,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1732

1833
### Miscellaneous Tasks
1934

35+
- Release 1.5.3
2036
- Allow bincode advisory in deny.toml ([#1060](https://github.com/alloy-rs/core/issues/1060))
2137
- [primitives] Switch default keccak to sha3 ([#1057](https://github.com/alloy-rs/core/issues/1057))
2238

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 = "1.5.3"
6+
version = "1.5.4"
77
edition = "2024"
88
rust-version = "1.85"
99
authors = ["Alloy Contributors"]
@@ -35,16 +35,16 @@ all = "warn"
3535

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

4949
# borsh
5050
borsh = { version = "1.5", default-features = false }

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+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.3
13+
814
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
915

1016
### Miscellaneous Tasks

crates/dyn-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+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.3
13+
814
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
915

1016
### 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+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.3
13+
814
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
915

1016
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
## [1.5.4](https://github.com/alloy-rs/core/releases/tag/v1.5.4) - 2026-01-28
9+
10+
### Performance
11+
12+
- [primitives] Use keccak_asm::Keccak256::digest ([#1067](https://github.com/alloy-rs/core/issues/1067))
13+
- perf(primitives): remove unnecessary keccak cache length hash computation ([#1065](https://github.com/alloy-rs/core/issues/1065))
14+
815
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
916

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

1421
### Miscellaneous Tasks
1522

23+
- Release 1.5.3
1624
- [primitives] Switch default keccak to sha3 ([#1057](https://github.com/alloy-rs/core/issues/1057))
1725

1826
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22

crates/sol-macro-expander/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+
## [1.5.4](https://github.com/alloy-rs/core/releases/tag/v1.5.4) - 2026-01-28
9+
10+
### Miscellaneous Tasks
11+
12+
- [sol-macro] Use sha3 ([#1064](https://github.com/alloy-rs/core/issues/1064))
13+
14+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 1.5.3
19+
820
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
921

1022
### Miscellaneous Tasks

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+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.3
13+
814
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
915

1016
### Miscellaneous Tasks

crates/sol-macro/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+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.3
13+
814
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
915

1016
### Miscellaneous Tasks

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+
## [1.5.3](https://github.com/alloy-rs/core/releases/tag/v1.5.3) - 2026-01-27
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.3
13+
814
## [1.5.2](https://github.com/alloy-rs/core/releases/tag/v1.5.2) - 2025-12-22
915

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)