Skip to content

Commit f7d4a85

Browse files
committed
chore: release 1.4.1
1 parent 5ac01fa commit f7d4a85

File tree

12 files changed

+167
-11
lines changed

12 files changed

+167
-11
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Features
11+
12+
- Gate 60 tuple impls behind 'more-tuple-impls' feature flag ([#1027](https://github.com/alloy-rs/core/issues/1027))
13+
- [sol-macro] Add transient storage keyword support ([#1026](https://github.com/alloy-rs/core/issues/1026))
14+
- Add Sqlx Traits for `Bytes` Type ([#1020](https://github.com/alloy-rs/core/issues/1020))
15+
- [primitives] Add Borsh support for `TxKind` ([#1022](https://github.com/alloy-rs/core/issues/1022))
16+
17+
### Miscellaneous Tasks
18+
19+
- Remove some inlines ([#1028](https://github.com/alloy-rs/core/issues/1028))
20+
- Fix docs, typos ([#1023](https://github.com/alloy-rs/core/issues/1023))
21+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
22+
23+
### Other
24+
25+
- Merge commit from fork
26+
27+
### Refactor
28+
29+
- [dyn-abi] Clean up Resolver ([#1030](https://github.com/alloy-rs/core/issues/1030))
30+
831
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
932

1033
### Bug Fixes
@@ -35,6 +58,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3558

3659
### Miscellaneous Tasks
3760

61+
- Release 1.4.0
3862
- Tweak postgres.rs ([#1018](https://github.com/alloy-rs/core/issues/1018))
3963
- [sol-types] Sync panic reasons from geth ([#1015](https://github.com/alloy-rs/core/issues/1015))
4064
- Typo rollup ([#997](https://github.com/alloy-rs/core/issues/997))

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.4.0"
6+
version = "1.4.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.4.0", path = "crates/core", default-features = false }
39-
alloy-dyn-abi = { version = "1.4.0", path = "crates/dyn-abi", default-features = false }
40-
alloy-json-abi = { version = "1.4.0", path = "crates/json-abi", default-features = false }
41-
alloy-primitives = { version = "1.4.0", path = "crates/primitives", default-features = false }
42-
alloy-sol-macro = { version = "1.4.0", path = "crates/sol-macro", default-features = false }
43-
alloy-sol-macro-input = { version = "1.4.0", path = "crates/sol-macro-input", default-features = false }
44-
alloy-sol-macro-expander = { version = "1.4.0", path = "crates/sol-macro-expander", default-features = false }
45-
alloy-sol-type-parser = { version = "1.4.0", path = "crates/sol-type-parser", default-features = false }
46-
alloy-sol-types = { version = "1.4.0", path = "crates/sol-types", default-features = false }
47-
syn-solidity = { version = "1.4.0", path = "crates/syn-solidity", default-features = false }
38+
alloy-core = { version = "1.4.1", path = "crates/core", default-features = false }
39+
alloy-dyn-abi = { version = "1.4.1", path = "crates/dyn-abi", default-features = false }
40+
alloy-json-abi = { version = "1.4.1", path = "crates/json-abi", default-features = false }
41+
alloy-primitives = { version = "1.4.1", path = "crates/primitives", default-features = false }
42+
alloy-sol-macro = { version = "1.4.1", path = "crates/sol-macro", default-features = false }
43+
alloy-sol-macro-input = { version = "1.4.1", path = "crates/sol-macro-input", default-features = false }
44+
alloy-sol-macro-expander = { version = "1.4.1", path = "crates/sol-macro-expander", default-features = false }
45+
alloy-sol-type-parser = { version = "1.4.1", path = "crates/sol-type-parser", default-features = false }
46+
alloy-sol-types = { version = "1.4.1", path = "crates/sol-types", default-features = false }
47+
syn-solidity = { version = "1.4.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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,26 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Features
11+
12+
- Gate 60 tuple impls behind 'more-tuple-impls' feature flag ([#1027](https://github.com/alloy-rs/core/issues/1027))
13+
14+
### Miscellaneous Tasks
15+
16+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
17+
818
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
919

1020
### Features
1121

1222
- Rkyv support ([#990](https://github.com/alloy-rs/core/issues/990))
1323

24+
### Miscellaneous Tasks
25+
26+
- Release 1.4.0
27+
1428
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
1529

1630
### Miscellaneous Tasks

crates/dyn-abi/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,26 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
13+
14+
### Other
15+
16+
- Merge commit from fork
17+
18+
### Refactor
19+
20+
- [dyn-abi] Clean up Resolver ([#1030](https://github.com/alloy-rs/core/issues/1030))
21+
22+
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
23+
24+
### Miscellaneous Tasks
25+
26+
- Release 1.4.0
27+
828
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
929

1030
### Miscellaneous Tasks

crates/json-abi/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
13+
14+
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 1.4.0
19+
820
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
921

1022
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Features
11+
12+
- Add Sqlx Traits for `Bytes` Type ([#1020](https://github.com/alloy-rs/core/issues/1020))
13+
- [primitives] Add Borsh support for `TxKind` ([#1022](https://github.com/alloy-rs/core/issues/1022))
14+
15+
### Miscellaneous Tasks
16+
17+
- Fix docs, typos ([#1023](https://github.com/alloy-rs/core/issues/1023))
18+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
19+
820
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
921

1022
### Documentation
@@ -21,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2133

2234
### Miscellaneous Tasks
2335

36+
- Release 1.4.0
2437
- Tweak postgres.rs ([#1018](https://github.com/alloy-rs/core/issues/1018))
2538

2639
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17

crates/sol-macro-expander/CHANGELOG.md

Lines changed: 10 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
13+
814
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
915

1016
### Bug Fixes
@@ -18,6 +24,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1824
- [sol-macro-expander] Add `Clone` trait to enum contracts containers ([#1003](https://github.com/alloy-rs/core/issues/1003))
1925
- [sol-macro-expander] Add `name_by_selector` method for enum variant retrieval ([#995](https://github.com/alloy-rs/core/issues/995))
2026

27+
### Miscellaneous Tasks
28+
29+
- Release 1.4.0
30+
2131
### Performance
2232

2333
- [sol-macro] Improve abi expansion ([#1005](https://github.com/alloy-rs/core/issues/1005))

crates/sol-macro-input/CHANGELOG.md

Lines changed: 10 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
13+
814
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
915

1016
### Bug Fixes
@@ -15,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521

1622
- [sol-macro] Inherit attributes from contract ([#1004](https://github.com/alloy-rs/core/issues/1004))
1723

24+
### Miscellaneous Tasks
25+
26+
- Release 1.4.0
27+
1828
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
1929

2030
### Miscellaneous Tasks

crates/sol-macro/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
13+
14+
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 1.4.0
19+
820
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
921

1022
### Miscellaneous Tasks

crates/sol-type-parser/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.4.1](https://github.com/alloy-rs/core/releases/tag/v1.4.1) - 2025-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Remove some inlines ([#1028](https://github.com/alloy-rs/core/issues/1028))
13+
- Remove feature(doc_auto_cfg) ([#1019](https://github.com/alloy-rs/core/issues/1019))
14+
15+
## [1.4.0](https://github.com/alloy-rs/core/releases/tag/v1.4.0) - 2025-09-26
16+
17+
### Miscellaneous Tasks
18+
19+
- Release 1.4.0
20+
821
## [1.3.1](https://github.com/alloy-rs/core/releases/tag/v1.3.1) - 2025-08-17
922

1023
### Miscellaneous Tasks

0 commit comments

Comments
 (0)