Skip to content

Commit 8b96902

Browse files
committed
chore: release 1.5.1
1 parent c699040 commit 8b96902

12 files changed

Lines changed: 64 additions & 11 deletions

File tree

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.1](https://github.com/alloy-rs/core/releases/tag/v1.5.1) - 2025-12-18
9+
10+
### Features
11+
12+
- Extract cache to a separate crate ([#1053](https://github.com/alloy-rs/core/issues/1053))
13+
- [primitives] Add U256Map ([#1052](https://github.com/alloy-rs/core/issues/1052))
14+
815
## [1.5.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
916

1017
### Bug Fixes
@@ -26,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2633

2734
### Miscellaneous Tasks
2835

36+
- Release 1.5.0
2937
- Rm all deprecations ([#1048](https://github.com/alloy-rs/core/issues/1048))
3038
- [doc] Complete alloy-dyn-abi readme ([#1044](https://github.com/alloy-rs/core/issues/1044))
3139
- Clippy ([#1037](https://github.com/alloy-rs/core/issues/1037))

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

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

crates/core/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
- Add rapidhash to available hashers ([#1051](https://github.com/alloy-rs/core/issues/1051))
1717

18+
### Miscellaneous Tasks
19+
20+
- Release 1.5.0
21+
1822
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
1923

2024
### Features

crates/dyn-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.5.0
1213
- [doc] Complete alloy-dyn-abi readme ([#1044](https://github.com/alloy-rs/core/issues/1044))
1314
- Clippy ([#1037](https://github.com/alloy-rs/core/issues/1037))
1415

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.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.0
13+
814
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
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.1](https://github.com/alloy-rs/core/releases/tag/v1.5.1) - 2025-12-18
9+
10+
### Features
11+
12+
- Extract cache to a separate crate ([#1053](https://github.com/alloy-rs/core/issues/1053))
13+
- [primitives] Add U256Map ([#1052](https://github.com/alloy-rs/core/issues/1052))
14+
815
## [1.5.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
916

1017
### Bug Fixes
@@ -26,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2633

2734
### Miscellaneous Tasks
2835

36+
- Release 1.5.0
2937
- Rm all deprecations ([#1048](https://github.com/alloy-rs/core/issues/1048))
3038

3139
### Testing

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+
## [1.5.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.0
13+
814
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
915

1016
### 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.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.0
13+
814
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
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.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.0
13+
814
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
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.0](https://github.com/alloy-rs/core/releases/tag/v1.5.0) - 2025-12-16
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.5.0
13+
814
## [1.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
915

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)