Skip to content

Commit e6d02ee

Browse files
committed
chore: release 1.2.0
1 parent 4004749 commit e6d02ee

File tree

12 files changed

+134
-11
lines changed

12 files changed

+134
-11
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
- Bump MSRV to 1.85 ([#959](https://github.com/alloy-rs/core/issues/959))
14+
815
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
916

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

1623
- Added `decode_log_validate` method ([#957](https://github.com/alloy-rs/core/issues/957))
1724

25+
### Miscellaneous Tasks
26+
27+
- Release 1.1.3
28+
1829
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
1930

2031
### Dependencies

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.1.3"
6+
version = "1.2.0"
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.1.3", path = "crates/core", default-features = false }
39-
alloy-dyn-abi = { version = "1.1.3", path = "crates/dyn-abi", default-features = false }
40-
alloy-json-abi = { version = "1.1.3", path = "crates/json-abi", default-features = false }
41-
alloy-primitives = { version = "1.1.3", path = "crates/primitives", default-features = false }
42-
alloy-sol-macro = { version = "1.1.3", path = "crates/sol-macro", default-features = false }
43-
alloy-sol-macro-input = { version = "1.1.3", path = "crates/sol-macro-input", default-features = false }
44-
alloy-sol-macro-expander = { version = "1.1.3", path = "crates/sol-macro-expander", default-features = false }
45-
alloy-sol-type-parser = { version = "1.1.3", path = "crates/sol-type-parser", default-features = false }
46-
alloy-sol-types = { version = "1.1.3", path = "crates/sol-types", default-features = false }
47-
syn-solidity = { version = "1.1.3", path = "crates/syn-solidity", default-features = false }
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 }
4848

4949
# serde
5050
serde = { version = "1.0", default-features = false, features = ["alloc"] }

crates/core/CHANGELOG.md

Lines changed: 6 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.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.1.3
13+
814
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
915

1016
### Miscellaneous Tasks

crates/dyn-abi/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.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
9+
10+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
- Bump MSRV to 1.85 ([#959](https://github.com/alloy-rs/core/issues/959))
14+
15+
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
16+
17+
### Miscellaneous Tasks
18+
19+
- Release 1.1.3
20+
821
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
922

1023
### Dependencies

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.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
9+
10+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
14+
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 1.1.3
19+
820
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
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,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.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
9+
10+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
- Bump MSRV to 1.85 ([#959](https://github.com/alloy-rs/core/issues/959))
14+
15+
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
16+
17+
### Miscellaneous Tasks
18+
19+
- Release 1.1.3
20+
821
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
922

1023
### Miscellaneous Tasks

crates/sol-macro-expander/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.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
9+
10+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
- Bump MSRV to 1.85 ([#959](https://github.com/alloy-rs/core/issues/959))
14+
15+
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
16+
17+
### Miscellaneous Tasks
18+
19+
- Release 1.1.3
20+
821
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
922

1023
### Miscellaneous Tasks

crates/sol-macro-input/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.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
9+
10+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
14+
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 1.1.3
19+
820
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
921

1022
### Miscellaneous Tasks

crates/sol-macro/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,22 @@ 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+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
814
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
915

1016
### Features
1117

1218
- Added `decode_log_validate` method ([#957](https://github.com/alloy-rs/core/issues/957))
1319

20+
### Miscellaneous Tasks
21+
22+
- Release 1.1.3
23+
1424
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
1525

1626
### Miscellaneous Tasks

crates/sol-type-parser/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.2.0](https://github.com/alloy-rs/core/releases/tag/v1.2.0) - 2025-06-04
9+
10+
### Dependencies
11+
12+
- Bump to edition 2024 ([#960](https://github.com/alloy-rs/core/issues/960))
13+
14+
## [1.1.3](https://github.com/alloy-rs/core/releases/tag/v1.1.3) - 2025-06-04
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 1.1.3
19+
820
## [1.1.2](https://github.com/alloy-rs/core/releases/tag/v1.1.2) - 2025-05-20
921

1022
### Miscellaneous Tasks

0 commit comments

Comments
 (0)