Skip to content

Commit 09e7503

Browse files
committed
chore: release 1.5.0
1 parent 5f305da commit 09e7503

File tree

12 files changed

+107
-11
lines changed

12 files changed

+107
-11
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +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+
## [1.5.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Bug Fixes
11+
12+
- [primitives] Cache keccaks up to 88 bytes ([#1049](https://github.com/alloy-rs/core/issues/1049))
13+
14+
### Documentation
15+
16+
- Document allow(unexpected_cfgs) for wrap_fixed_bytes ([#1043](https://github.com/alloy-rs/core/issues/1043))
17+
18+
### Features
19+
20+
- Add rapidhash to available hashers ([#1051](https://github.com/alloy-rs/core/issues/1051))
21+
- Add keccak256_uncached ([#1050](https://github.com/alloy-rs/core/issues/1050))
22+
- [primitives] Add UintTryTo trait for Signed type ([#1029](https://github.com/alloy-rs/core/issues/1029))
23+
- [primitives] Add keccak256_cached ([#1046](https://github.com/alloy-rs/core/issues/1046))
24+
- [primitives] Add `Signature::as_rsy` method ([#1041](https://github.com/alloy-rs/core/issues/1041))
25+
- Add Bloom::accrue_logs method ([#1039](https://github.com/alloy-rs/core/issues/1039))
26+
27+
### Miscellaneous Tasks
28+
29+
- Rm all deprecations ([#1048](https://github.com/alloy-rs/core/issues/1048))
30+
- [doc] Complete alloy-dyn-abi readme ([#1044](https://github.com/alloy-rs/core/issues/1044))
31+
- Clippy ([#1037](https://github.com/alloy-rs/core/issues/1037))
32+
33+
### Testing
34+
35+
- [primitives] Use correct keccak fn
36+
837
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
938

1039
### Features
@@ -16,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1645

1746
### Miscellaneous Tasks
1847

48+
- Release 1.4.1
1949
- Remove some inlines ([#1028](https://github.com/alloy-rs/core/issues/1028))
2050
- Fix docs, typos ([#1023](https://github.com/alloy-rs/core/issues/1023))
2151
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))

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.4.1"
6+
version = "1.5.0"
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.4.1", path = "crates/core", default-features = false }
39-
alloy-dyn-abi = { version = "1.4.1", path = "crates/dyn-abi", default-features = false }
40-
alloy-json-abi = { version = "1.4.1", path = "crates/json-abi", default-features = false }
41-
alloy-primitives = { version = "1.4.1", path = "crates/primitives", default-features = false }
42-
alloy-sol-macro = { version = "1.4.1", path = "crates/sol-macro", default-features = false }
43-
alloy-sol-macro-input = { version = "1.4.1", path = "crates/sol-macro-input", default-features = false }
44-
alloy-sol-macro-expander = { version = "1.4.1", path = "crates/sol-macro-expander", default-features = false }
45-
alloy-sol-type-parser = { version = "1.4.1", path = "crates/sol-type-parser", default-features = false }
46-
alloy-sol-types = { version = "1.4.1", path = "crates/sol-types", default-features = false }
47-
syn-solidity = { version = "1.4.1", path = "crates/syn-solidity", default-features = false }
38+
alloy-core = { version = "1.5.0", path = "crates/core", default-features = false }
39+
alloy-dyn-abi = { version = "1.5.0", path = "crates/dyn-abi", default-features = false }
40+
alloy-json-abi = { version = "1.5.0", path = "crates/json-abi", default-features = false }
41+
alloy-primitives = { version = "1.5.0", path = "crates/primitives", default-features = false }
42+
alloy-sol-macro = { version = "1.5.0", path = "crates/sol-macro", default-features = false }
43+
alloy-sol-macro-input = { version = "1.5.0", path = "crates/sol-macro-input", default-features = false }
44+
alloy-sol-macro-expander = { version = "1.5.0", path = "crates/sol-macro-expander", default-features = false }
45+
alloy-sol-type-parser = { version = "1.5.0", path = "crates/sol-type-parser", default-features = false }
46+
alloy-sol-types = { version = "1.5.0", path = "crates/sol-types", default-features = false }
47+
syn-solidity = { version = "1.5.0", path = "crates/syn-solidity", default-features = false }
4848

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

crates/core/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+
## [1.5.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Bug Fixes
11+
12+
- [primitives] Cache keccaks up to 88 bytes ([#1049](https://github.com/alloy-rs/core/issues/1049))
13+
14+
### Features
15+
16+
- Add rapidhash to available hashers ([#1051](https://github.com/alloy-rs/core/issues/1051))
17+
818
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
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 1.4.1
1627
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1728

1829
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26

crates/dyn-abi/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +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.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Miscellaneous Tasks
11+
12+
- [doc] Complete alloy-dyn-abi readme ([#1044](https://github.com/alloy-rs/core/issues/1044))
13+
- Clippy ([#1037](https://github.com/alloy-rs/core/issues/1037))
14+
815
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
916

1017
### Miscellaneous Tasks
1118

19+
- Release 1.4.1
1220
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1321

1422
### Other

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 1.4.1
1213
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1314

1415
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26

crates/primitives/CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,33 @@ 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.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Bug Fixes
11+
12+
- [primitives] Cache keccaks up to 88 bytes ([#1049](https://github.com/alloy-rs/core/issues/1049))
13+
14+
### Documentation
15+
16+
- Document allow(unexpected_cfgs) for wrap_fixed_bytes ([#1043](https://github.com/alloy-rs/core/issues/1043))
17+
18+
### Features
19+
20+
- Add rapidhash to available hashers ([#1051](https://github.com/alloy-rs/core/issues/1051))
21+
- Add keccak256_uncached ([#1050](https://github.com/alloy-rs/core/issues/1050))
22+
- [primitives] Add UintTryTo trait for Signed type ([#1029](https://github.com/alloy-rs/core/issues/1029))
23+
- [primitives] Add keccak256_cached ([#1046](https://github.com/alloy-rs/core/issues/1046))
24+
- [primitives] Add `Signature::as_rsy` method ([#1041](https://github.com/alloy-rs/core/issues/1041))
25+
- Add Bloom::accrue_logs method ([#1039](https://github.com/alloy-rs/core/issues/1039))
26+
27+
### Miscellaneous Tasks
28+
29+
- Rm all deprecations ([#1048](https://github.com/alloy-rs/core/issues/1048))
30+
31+
### Testing
32+
33+
- [primitives] Use correct keccak fn
34+
835
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
936

1037
### Features
@@ -14,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1441

1542
### Miscellaneous Tasks
1643

44+
- Release 1.4.1
1745
- Fix docs, typos ([#1023](https://github.com/alloy-rs/core/issues/1023))
1846
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1947

crates/sol-macro-expander/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 1.4.1
1213
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1314

1415
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26

crates/sol-macro-input/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 1.4.1
1213
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1314

1415
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26

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 1.4.1
1213
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1314

1415
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26

crates/sol-type-parser/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 1.4.1
1213
- Remove some inlines ([#1028](https://github.com/alloy-rs/core/issues/1028))
1314
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
1415

0 commit comments

Comments
 (0)