Skip to content

Commit bad414b

Browse files
committed
chore: release 1.3.1
1 parent 8c5713c commit bad414b

File tree

12 files changed

+180
-300
lines changed

12 files changed

+180
-300
lines changed

CHANGELOG.md

Lines changed: 38 additions & 74 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.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
9+
10+
### Bug Fixes
11+
12+
- [primitives] Re-export correct `Entry` types ([#989](https://github.com/alloy-rs/core/issues/989))
13+
- [rpc] Check reserved function names ([#987](https://github.com/alloy-rs/core/issues/987))
14+
15+
### Miscellaneous Tasks
16+
17+
- Add typos ([#991](https://github.com/alloy-rs/core/issues/991))
18+
19+
### Other
20+
21+
- Implement conversion from `Word` for `DynSolValue` ([#983](https://github.com/alloy-rs/core/issues/983))
22+
823
## [1.3.0](https://github.com/alloy-rs/core/releases/tag/v1.3.0) - 2025-07-22
924

1025
### Bug Fixes
@@ -23,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2338

2439
### Miscellaneous Tasks
2540

41+
- Release 1.3.0
2642
- Fix warning in generated code ([#976](https://github.com/alloy-rs/core/issues/976))
2743
- [meta] Update .gitignore
2844
- Add helper to find function by selector ([#971](https://github.com/alloy-rs/core/issues/971))
@@ -120,74 +136,47 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
120136

121137
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
122138

123-
### Features
124-
125-
- [primitives] Supporting diesel @ 2.2 ([#915](https://github.com/alloy-rs/core/issues/915))
126-
- 1.0-rc.1
127-
- Bump ruint, adjust rand feature
128-
129-
### Miscellaneous Tasks
130-
131-
- Release 1.0.0
132-
- Release 1.0.0-rc.1
133-
- Release 0.8.25
134-
135-
### Other
136-
137-
- Merge branch 'main' into v1.0-rc
138-
139-
### Testing
140-
141-
- Missing import
142-
- [dyn-abi] Remove dev-dependency on self
143-
144-
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
145-
146-
### Features
147-
148-
- [sol-macro] Improve call return encoding ([#909](https://github.com/alloy-rs/core/issues/909))
149-
150-
## [0.8.23](https://github.com/alloy-rs/core/releases/tag/v0.8.23) - 2025-03-13
151-
152139
### Bug Fixes
153140

154141
- [`sol-expander`] Rename from/into + impl From ([#905](https://github.com/alloy-rs/core/issues/905))
155142
- [`sol!`] Pass correct call_struct to call_builder in expansion ([#901](https://github.com/alloy-rs/core/issues/901))
156143
- [sol-macro] Rm fake transport from contract expansion ([#865](https://github.com/alloy-rs/core/issues/865))
144+
- [primitives] Remove undefined behavior in FixedBytes ([#919](https://github.com/alloy-rs/core/issues/919))
145+
- Do not rely on bytes dependency in `wrap_fixed_bytes!` ([#918](https://github.com/alloy-rs/core/issues/918))
157146

158147
### Dependencies
159148

160149
- [deps] Bump getrandom to 0.3, rand to 0.9 ([#869](https://github.com/alloy-rs/core/issues/869))
161150

162151
### Features
163152

153+
- [primitives] Supporting diesel @ 2.2 ([#915](https://github.com/alloy-rs/core/issues/915))
154+
- 1.0-rc.1
155+
- Bump ruint, adjust rand feature
156+
- [sol-macro] Improve call return encoding ([#909](https://github.com/alloy-rs/core/issues/909))
164157
- [primitives] Remove `From<String> for Bytes` ([#907](https://github.com/alloy-rs/core/issues/907))
165158
- [`sol!`] Gen unit/tuple structs for errors, calls, events with 0/1 param ([#883](https://github.com/alloy-rs/core/issues/883))
166159
- [sol-macro] Function calls should directly yield result ([#855](https://github.com/alloy-rs/core/issues/855))
167160
- [sol-types] Rm `validate: bool` ([#863](https://github.com/alloy-rs/core/issues/863))
161+
- Add inner mut ([#921](https://github.com/alloy-rs/core/issues/921))
168162

169163
### Miscellaneous Tasks
170164

165+
- Release 1.0.0
166+
- Release 1.0.0-rc.1
167+
- Release 0.8.25
171168
- Remove deprecated `Signature` ([#899](https://github.com/alloy-rs/core/issues/899))
169+
- Add hash_ref function to sealed.rs ([#920](https://github.com/alloy-rs/core/issues/920))
172170

173171
### Other
174172

173+
- Merge branch 'main' into v1.0-rc
175174
- Merge branch 'main' into v1.0-rc
176175

177-
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
178-
179-
### Bug Fixes
180-
181-
- [primitives] Remove undefined behavior in FixedBytes ([#919](https://github.com/alloy-rs/core/issues/919))
182-
- Do not rely on bytes dependency in `wrap_fixed_bytes!` ([#918](https://github.com/alloy-rs/core/issues/918))
183-
184-
### Features
185-
186-
- Add inner mut ([#921](https://github.com/alloy-rs/core/issues/921))
187-
188-
### Miscellaneous Tasks
176+
### Testing
189177

190-
- Add hash_ref function to sealed.rs ([#920](https://github.com/alloy-rs/core/issues/920))
178+
- Missing import
179+
- [dyn-abi] Remove dev-dependency on self
191180

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

@@ -402,60 +391,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
402391
### Bug Fixes
403392

404393
- [sol-macro] Expand all getter return types ([#812](https://github.com/alloy-rs/core/issues/812))
394+
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
395+
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
405396

406397
### Dependencies
407398

408399
- Remove cron schedule for deps.yml ([#808](https://github.com/alloy-rs/core/issues/808))
409400

410-
### Features
411-
412-
- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
413-
414-
### Miscellaneous Tasks
415-
416-
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
417-
418-
### Other
419-
420-
- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
421-
422-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
423-
424-
### Bug Fixes
425-
426-
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
427-
428-
### Features
429-
430-
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
431-
432-
### Miscellaneous Tasks
433-
434-
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
435-
436-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
437-
438-
### Bug Fixes
439-
440-
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
441-
442401
### Documentation
443402

444403
- Update ethers-rs README note ([#798](https://github.com/alloy-rs/core/issues/798))
445404

446405
### Features
447406

407+
- Expose `returns` field for `DynSolCall` type ([#809](https://github.com/alloy-rs/core/issues/809))
408+
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
448409
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
449410
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
450411

451412
### Miscellaneous Tasks
452413

414+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
415+
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
453416
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
454417
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
455418
- [meta] Update SECURITY.md ([#793](https://github.com/alloy-rs/core/issues/793))
456419

457420
### Other
458421

422+
- Make Signature::new a const fn ([#810](https://github.com/alloy-rs/core/issues/810))
459423
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))
460424
- Add success job ([#795](https://github.com/alloy-rs/core/issues/795))
461425

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.3.0"
6+
version = "1.3.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.3.0", path = "crates/core", default-features = false }
39-
alloy-dyn-abi = { version = "1.3.0", path = "crates/dyn-abi", default-features = false }
40-
alloy-json-abi = { version = "1.3.0", path = "crates/json-abi", default-features = false }
41-
alloy-primitives = { version = "1.3.0", path = "crates/primitives", default-features = false }
42-
alloy-sol-macro = { version = "1.3.0", path = "crates/sol-macro", default-features = false }
43-
alloy-sol-macro-input = { version = "1.3.0", path = "crates/sol-macro-input", default-features = false }
44-
alloy-sol-macro-expander = { version = "1.3.0", path = "crates/sol-macro-expander", default-features = false }
45-
alloy-sol-type-parser = { version = "1.3.0", path = "crates/sol-type-parser", default-features = false }
46-
alloy-sol-types = { version = "1.3.0", path = "crates/sol-types", default-features = false }
47-
syn-solidity = { version = "1.3.0", path = "crates/syn-solidity", default-features = false }
38+
alloy-core = { version = "1.3.1", path = "crates/core", default-features = false }
39+
alloy-dyn-abi = { version = "1.3.1", path = "crates/dyn-abi", default-features = false }
40+
alloy-json-abi = { version = "1.3.1", path = "crates/json-abi", default-features = false }
41+
alloy-primitives = { version = "1.3.1", path = "crates/primitives", default-features = false }
42+
alloy-sol-macro = { version = "1.3.1", path = "crates/sol-macro", default-features = false }
43+
alloy-sol-macro-input = { version = "1.3.1", path = "crates/sol-macro-input", default-features = false }
44+
alloy-sol-macro-expander = { version = "1.3.1", path = "crates/sol-macro-expander", default-features = false }
45+
alloy-sol-type-parser = { version = "1.3.1", path = "crates/sol-type-parser", default-features = false }
46+
alloy-sol-types = { version = "1.3.1", path = "crates/sol-types", default-features = false }
47+
syn-solidity = { version = "1.3.1", 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 & 10 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.3.0](https://github.com/alloy-rs/core/releases/tag/v1.3.0) - 2025-07-22
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.3.0
13+
814
## [1.2.1](https://github.com/alloy-rs/core/releases/tag/v1.2.1) - 2025-06-20
915

1016
### Miscellaneous Tasks
@@ -132,17 +138,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
132138
### Miscellaneous Tasks
133139

134140
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
135-
136-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
137-
138-
### Miscellaneous Tasks
139-
140141
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
141-
142-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
143-
144-
### Miscellaneous Tasks
145-
146142
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
147143

148144
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28

crates/dyn-abi/CHANGELOG.md

Lines changed: 19 additions & 20 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.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
9+
10+
### Miscellaneous Tasks
11+
12+
- Add typos ([#991](https://github.com/alloy-rs/core/issues/991))
13+
14+
### Other
15+
16+
- Implement conversion from `Word` for `DynSolValue` ([#983](https://github.com/alloy-rs/core/issues/983))
17+
818
## [1.3.0](https://github.com/alloy-rs/core/releases/tag/v1.3.0) - 2025-07-22
919

1020
### Documentation
@@ -15,6 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1525

1626
- Add `is_dynamic` method to `DynSolType` ([#974](https://github.com/alloy-rs/core/issues/974))
1727

28+
### Miscellaneous Tasks
29+
30+
- Release 1.3.0
31+
1832
## [1.2.1](https://github.com/alloy-rs/core/releases/tag/v1.2.1) - 2025-06-20
1933

2034
### Bug Fixes
@@ -71,9 +85,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7185

7286
## [1.0.0](https://github.com/alloy-rs/core/releases/tag/v1.0.0) - 2025-04-03
7387

88+
### Dependencies
89+
90+
- [deps] Bump getrandom to 0.3, rand to 0.9 ([#869](https://github.com/alloy-rs/core/issues/869))
91+
7492
### Features
7593

7694
- 1.0-rc.1
95+
- [sol-types] Rm `validate: bool` ([#863](https://github.com/alloy-rs/core/issues/863))
7796

7897
### Miscellaneous Tasks
7998

@@ -90,16 +109,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
90109
- Missing import
91110
- [dyn-abi] Remove dev-dependency on self
92111

93-
## [0.8.23](https://github.com/alloy-rs/core/releases/tag/v0.8.23) - 2025-03-13
94-
95-
### Dependencies
96-
97-
- [deps] Bump getrandom to 0.3, rand to 0.9 ([#869](https://github.com/alloy-rs/core/issues/869))
98-
99-
### Features
100-
101-
- [sol-types] Rm `validate: bool` ([#863](https://github.com/alloy-rs/core/issues/863))
102-
103112
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
104113

105114
### Miscellaneous Tasks
@@ -210,17 +219,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
210219
### Miscellaneous Tasks
211220

212221
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
213-
214-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
215-
216-
### Miscellaneous Tasks
217-
218222
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
219-
220-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
221-
222-
### Miscellaneous Tasks
223-
224223
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
225224

226225
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28

crates/json-abi/CHANGELOG.md

Lines changed: 3 additions & 12 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.3.0
1213
- Add helper to find function by selector ([#971](https://github.com/alloy-rs/core/issues/971))
1314

1415
## [1.2.1](https://github.com/alloy-rs/core/releases/tag/v1.2.1) - 2025-06-20
@@ -152,24 +153,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
152153

153154
## [0.8.13](https://github.com/alloy-rs/core/releases/tag/v0.8.13) - 2024-11-26
154155

155-
### Miscellaneous Tasks
156-
157-
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
158-
159-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
160-
161-
### Miscellaneous Tasks
162-
163-
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
164-
165-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
166-
167156
### Features
168157

169158
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
170159

171160
### Miscellaneous Tasks
172161

162+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
163+
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
173164
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
174165
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
175166

0 commit comments

Comments
 (0)