@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and 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
0 commit comments