Skip to content

Commit d8a94dc

Browse files
committed
chore: release 1.2.1
1 parent 2a4cef3 commit d8a94dc

File tree

12 files changed

+170
-300
lines changed

12 files changed

+170
-300
lines changed

CHANGELOG.md

Lines changed: 40 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,31 @@ 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.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

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

1016
### Miscellaneous Tasks
@@ -120,17 +126,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
120126
### Miscellaneous Tasks
121127

122128
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
123-
124-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
125-
126-
### Miscellaneous Tasks
127-
128129
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
129-
130-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
131-
132-
### Miscellaneous Tasks
133-
134130
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
135131

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

crates/dyn-abi/CHANGELOG.md

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,23 @@ 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.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+
814
## [1.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
915

1016
### Dependencies
1117

1218
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
1319
- Bump MSRV to 1.85 ([#959](https://github.com/alloy-rs/core/issues/959))
1420

21+
### Miscellaneous Tasks
22+
23+
- Release 1.2.0
24+
1525
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
1626

1727
### Miscellaneous Tasks
@@ -47,9 +57,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4757

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

60+
### Dependencies
61+
62+
- [deps] Bump getrandom to 0.3, rand to 0.9 ([#869](https://github.com/alloy-rs/core/issues/869))
63+
5064
### Features
5165

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

5469
### Miscellaneous Tasks
5570

@@ -66,16 +81,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6681
- Missing import
6782
- [dyn-abi] Remove dev-dependency on self
6883

69-
## [0.8.23](https://github.com/alloy-rs/core/releases/tag/v0.8.23) - 2025-03-13
70-
71-
### Dependencies
72-
73-
- [deps] Bump getrandom to 0.3, rand to 0.9 ([#869](https://github.com/alloy-rs/core/issues/869))
74-
75-
### Features
76-
77-
- [sol-types] Rm `validate: bool` ([#863](https://github.com/alloy-rs/core/issues/863))
78-
7984
## [0.8.24](https://github.com/alloy-rs/core/releases/tag/v0.8.24) - 2025-03-21
8085

8186
### Miscellaneous Tasks
@@ -186,17 +191,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
186191
### Miscellaneous Tasks
187192

188193
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
189-
190-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
191-
192-
### Miscellaneous Tasks
193-
194194
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
195-
196-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
197-
198-
### Miscellaneous Tasks
199-
200195
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
201196

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

crates/json-abi/CHANGELOG.md

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

1212
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 1.2.0
17+
1418
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
1519

1620
### Miscellaneous Tasks
@@ -136,24 +140,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
136140

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

139-
### Miscellaneous Tasks
140-
141-
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
142-
143-
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
144-
145-
### Miscellaneous Tasks
146-
147-
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
148-
149-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
150-
151143
### Features
152144

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

155147
### Miscellaneous Tasks
156148

149+
- Release 0.8.13 ([#813](https://github.com/alloy-rs/core/issues/813))
150+
- Release 0.8.12 ([#806](https://github.com/alloy-rs/core/issues/806))
157151
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
158152
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
159153

0 commit comments

Comments
 (0)