@@ -5,13 +5,31 @@ 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.2.1] ( https://github.com/alloy-rs/core/releases/tag/v1.2.1 ) - 2025-06-20
9+
10+ ### Bug Fixes
11+
12+ - Colon 712 identifiers ([ #963 ] ( https://github.com/alloy-rs/core/issues/963 ) )
13+
14+ ### Dependencies
15+
16+ - [ meta] Add edition 2024 bump to .git-blame-ignore-revs
17+
18+ ### Miscellaneous Tasks
19+
20+ - Re-enable clippy::missing-const-for-fn ([ #961 ] ( https://github.com/alloy-rs/core/issues/961 ) )
21+
822## [ 1.2.0] ( https://github.com/alloy-rs/core/releases/tag/v1.2.0 ) - 2025-06-04
923
1024### Dependencies
1125
1226- Bump to edition 2024 ([ #960 ] ( https://github.com/alloy-rs/core/issues/960 ) )
1327- Bump MSRV to 1.85 ([ #959 ] ( https://github.com/alloy-rs/core/issues/959 ) )
1428
29+ ### Miscellaneous Tasks
30+
31+ - Release 1.2.0
32+
1533## [ 1.1.3] ( https://github.com/alloy-rs/core/releases/tag/v1.1.3 ) - 2025-06-04
1634
1735### Bug Fixes
@@ -79,74 +97,47 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7997
8098## [ 1.0.0] ( https://github.com/alloy-rs/core/releases/tag/v1.0.0 ) - 2025-04-03
8199
82- ### Features
83-
84- - [ primitives] Supporting diesel @ 2.2 ([ #915 ] ( https://github.com/alloy-rs/core/issues/915 ) )
85- - 1.0-rc.1
86- - Bump ruint, adjust rand feature
87-
88- ### Miscellaneous Tasks
89-
90- - Release 1.0.0
91- - Release 1.0.0-rc.1
92- - Release 0.8.25
93-
94- ### Other
95-
96- - Merge branch 'main' into v1.0-rc
97-
98- ### Testing
99-
100- - Missing import
101- - [ dyn-abi] Remove dev-dependency on self
102-
103- ## [ 0.8.24] ( https://github.com/alloy-rs/core/releases/tag/v0.8.24 ) - 2025-03-21
104-
105- ### Features
106-
107- - [ sol-macro] Improve call return encoding ([ #909 ] ( https://github.com/alloy-rs/core/issues/909 ) )
108-
109- ## [ 0.8.23] ( https://github.com/alloy-rs/core/releases/tag/v0.8.23 ) - 2025-03-13
110-
111100### Bug Fixes
112101
113102- [ ` sol-expander ` ] Rename from/into + impl From ([ #905 ] ( https://github.com/alloy-rs/core/issues/905 ) )
114103- [ ` sol! ` ] Pass correct call_struct to call_builder in expansion ([ #901 ] ( https://github.com/alloy-rs/core/issues/901 ) )
115104- [ sol-macro] Rm fake transport from contract expansion ([ #865 ] ( https://github.com/alloy-rs/core/issues/865 ) )
105+ - [ primitives] Remove undefined behavior in FixedBytes ([ #919 ] ( https://github.com/alloy-rs/core/issues/919 ) )
106+ - Do not rely on bytes dependency in ` wrap_fixed_bytes! ` ([ #918 ] ( https://github.com/alloy-rs/core/issues/918 ) )
116107
117108### Dependencies
118109
119110- [ deps] Bump getrandom to 0.3, rand to 0.9 ([ #869 ] ( https://github.com/alloy-rs/core/issues/869 ) )
120111
121112### Features
122113
114+ - [ primitives] Supporting diesel @ 2.2 ([ #915 ] ( https://github.com/alloy-rs/core/issues/915 ) )
115+ - 1.0-rc.1
116+ - Bump ruint, adjust rand feature
117+ - [ sol-macro] Improve call return encoding ([ #909 ] ( https://github.com/alloy-rs/core/issues/909 ) )
123118- [ primitives] Remove ` From<String> for Bytes ` ([ #907 ] ( https://github.com/alloy-rs/core/issues/907 ) )
124119- [ ` sol! ` ] Gen unit/tuple structs for errors, calls, events with 0/1 param ([ #883 ] ( https://github.com/alloy-rs/core/issues/883 ) )
125120- [ sol-macro] Function calls should directly yield result ([ #855 ] ( https://github.com/alloy-rs/core/issues/855 ) )
126121- [ sol-types] Rm ` validate: bool ` ([ #863 ] ( https://github.com/alloy-rs/core/issues/863 ) )
122+ - Add inner mut ([ #921 ] ( https://github.com/alloy-rs/core/issues/921 ) )
127123
128124### Miscellaneous Tasks
129125
126+ - Release 1.0.0
127+ - Release 1.0.0-rc.1
128+ - Release 0.8.25
130129- Remove deprecated ` Signature ` ([ #899 ] ( https://github.com/alloy-rs/core/issues/899 ) )
130+ - Add hash_ref function to sealed.rs ([ #920 ] ( https://github.com/alloy-rs/core/issues/920 ) )
131131
132132### Other
133133
134+ - Merge branch 'main' into v1.0-rc
134135- Merge branch 'main' into v1.0-rc
135136
136- ## [ 1.0.0] ( https://github.com/alloy-rs/core/releases/tag/v1.0.0 ) - 2025-04-03
137-
138- ### Bug Fixes
139-
140- - [ primitives] Remove undefined behavior in FixedBytes ([ #919 ] ( https://github.com/alloy-rs/core/issues/919 ) )
141- - Do not rely on bytes dependency in ` wrap_fixed_bytes! ` ([ #918 ] ( https://github.com/alloy-rs/core/issues/918 ) )
142-
143- ### Features
144-
145- - Add inner mut ([ #921 ] ( https://github.com/alloy-rs/core/issues/921 ) )
146-
147- ### Miscellaneous Tasks
137+ ### Testing
148138
149- - Add hash_ref function to sealed.rs ([ #920 ] ( https://github.com/alloy-rs/core/issues/920 ) )
139+ - Missing import
140+ - [ dyn-abi] Remove dev-dependency on self
150141
151142## [ 0.8.24] ( https://github.com/alloy-rs/core/releases/tag/v0.8.24 ) - 2025-03-21
152143
@@ -361,60 +352,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
361352### Bug Fixes
362353
363354- [ sol-macro] Expand all getter return types ([ #812 ] ( https://github.com/alloy-rs/core/issues/812 ) )
355+ - ` Sealed::hash ` serde ([ #805 ] ( https://github.com/alloy-rs/core/issues/805 ) )
356+ - [ serde] Add alias ` v ` for ` yParity ` ([ #801 ] ( https://github.com/alloy-rs/core/issues/801 ) )
364357
365358### Dependencies
366359
367360- Remove cron schedule for deps.yml ([ #808 ] ( https://github.com/alloy-rs/core/issues/808 ) )
368361
369- ### Features
370-
371- - Expose ` returns ` field for ` DynSolCall ` type ([ #809 ] ( https://github.com/alloy-rs/core/issues/809 ) )
372-
373- ### Miscellaneous Tasks
374-
375- - Release 0.8.13 ([ #813 ] ( https://github.com/alloy-rs/core/issues/813 ) )
376-
377- ### Other
378-
379- - Make Signature::new a const fn ([ #810 ] ( https://github.com/alloy-rs/core/issues/810 ) )
380-
381- ## [ 0.8.12] ( https://github.com/alloy-rs/core/releases/tag/v0.8.12 ) - 2024-11-12
382-
383- ### Bug Fixes
384-
385- - ` Sealed::hash ` serde ([ #805 ] ( https://github.com/alloy-rs/core/issues/805 ) )
386-
387- ### Features
388-
389- - Add ` AsRef ` impl and ` hash ` method to ` Sealed ` ([ #804 ] ( https://github.com/alloy-rs/core/issues/804 ) )
390-
391- ### Miscellaneous Tasks
392-
393- - Release 0.8.12 ([ #806 ] ( https://github.com/alloy-rs/core/issues/806 ) )
394-
395- ## [ 0.8.11] ( https://github.com/alloy-rs/core/releases/tag/v0.8.11 ) - 2024-11-05
396-
397- ### Bug Fixes
398-
399- - [ serde] Add alias ` v ` for ` yParity ` ([ #801 ] ( https://github.com/alloy-rs/core/issues/801 ) )
400-
401362### Documentation
402363
403364- Update ethers-rs README note ([ #798 ] ( https://github.com/alloy-rs/core/issues/798 ) )
404365
405366### Features
406367
368+ - Expose ` returns ` field for ` DynSolCall ` type ([ #809 ] ( https://github.com/alloy-rs/core/issues/809 ) )
369+ - Add ` AsRef ` impl and ` hash ` method to ` Sealed ` ([ #804 ] ( https://github.com/alloy-rs/core/issues/804 ) )
407370- [ json-abi] Add ` AbiItem::json_type ` ([ #797 ] ( https://github.com/alloy-rs/core/issues/797 ) )
408371- Add has_eip155_value convenience function to signature ([ #791 ] ( https://github.com/alloy-rs/core/issues/791 ) )
409372
410373### Miscellaneous Tasks
411374
375+ - Release 0.8.13 ([ #813 ] ( https://github.com/alloy-rs/core/issues/813 ) )
376+ - Release 0.8.12 ([ #806 ] ( https://github.com/alloy-rs/core/issues/806 ) )
412377- Release 0.8.11 ([ #803 ] ( https://github.com/alloy-rs/core/issues/803 ) )
413378- [ json-abi] Clean up utils ([ #794 ] ( https://github.com/alloy-rs/core/issues/794 ) )
414379- [ meta] Update SECURITY.md ([ #793 ] ( https://github.com/alloy-rs/core/issues/793 ) )
415380
416381### Other
417382
383+ - Make Signature::new a const fn ([ #810 ] ( https://github.com/alloy-rs/core/issues/810 ) )
418384- Revert "chore: replace Signature with PrimitiveSignature" ([ #800 ] ( https://github.com/alloy-rs/core/issues/800 ) )
419385- Add success job ([ #795 ] ( https://github.com/alloy-rs/core/issues/795 ) )
420386
0 commit comments