Skip to content

Commit 732b6c5

Browse files
authored
chore: release 0.8.12 (#806)
1 parent 4e4a0cd commit 732b6c5

File tree

12 files changed

+48
-27
lines changed

12 files changed

+48
-27
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Bug Fixes
1111

12+
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
1213
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
1314

1415
### Documentation
@@ -17,12 +18,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1718

1819
### Features
1920

21+
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
2022
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
2123
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
2224

2325
### Miscellaneous Tasks
2426

25-
- Release 0.8.11
27+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
2628
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
2729
- [meta] Update SECURITY.md ([#793](https://github.com/alloy-rs/core/issues/793))
2830

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 = "0.8.11"
6+
version = "0.8.12"
77
edition = "2021"
88
rust-version = "1.79"
99
authors = ["Alloy Contributors"]
@@ -39,16 +39,16 @@ all = "warn"
3939

4040
[workspace.dependencies]
4141
# workspace crates
42-
alloy-core = { version = "0.8.11", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.11", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.11", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.11", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.11", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.11", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.11", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.11", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.11", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.11", path = "crates/syn-solidity", default-features = false }
42+
alloy-core = { version = "0.8.12", path = "crates/core", default-features = false }
43+
alloy-dyn-abi = { version = "0.8.12", path = "crates/dyn-abi", default-features = false }
44+
alloy-json-abi = { version = "0.8.12", path = "crates/json-abi", default-features = false }
45+
alloy-primitives = { version = "0.8.12", path = "crates/primitives", default-features = false }
46+
alloy-sol-macro = { version = "0.8.12", path = "crates/sol-macro", default-features = false }
47+
alloy-sol-macro-input = { version = "0.8.12", path = "crates/sol-macro-input", default-features = false }
48+
alloy-sol-macro-expander = { version = "0.8.12", path = "crates/sol-macro-expander", default-features = false }
49+
alloy-sol-type-parser = { version = "0.8.12", path = "crates/sol-type-parser", default-features = false }
50+
alloy-sol-types = { version = "0.8.12", path = "crates/sol-types", default-features = false }
51+
syn-solidity = { version = "0.8.12", path = "crates/syn-solidity", default-features = false }
5252

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

crates/core/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Miscellaneous Tasks
1111

12-
- Release 0.8.11
12+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
1313

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

crates/dyn-abi/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Miscellaneous Tasks
1111

12-
- Release 0.8.11
12+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
1313

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

crates/json-abi/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Features
1111

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

1414
### Miscellaneous Tasks
1515

16+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
1617
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
1718

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

crates/primitives/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,16 +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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Bug Fixes
1111

12+
- `Sealed::hash` serde ([#805](https://github.com/alloy-rs/core/issues/805))
1213
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
1314

1415
### Features
1516

17+
- Add `AsRef` impl and `hash` method to `Sealed` ([#804](https://github.com/alloy-rs/core/issues/804))
1618
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
1719

20+
### Miscellaneous Tasks
21+
22+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
23+
1824
### Other
1925

2026
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))

crates/sol-macro-expander/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Miscellaneous Tasks
1111

12-
- Release 0.8.11
12+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
1313

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

crates/sol-macro-input/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Miscellaneous Tasks
1111

12-
- Release 0.8.11
12+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
1313

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

crates/sol-macro/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ 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-
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
8+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
99

1010
### Miscellaneous Tasks
1111

12-
- Release 0.8.11
12+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
1313

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

crates/sol-type-parser/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+
## [0.8.12](https://github.com/alloy-rs/core/releases/tag/v0.8.12) - 2024-11-12
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.11 ([#803](https://github.com/alloy-rs/core/issues/803))
13+
814
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
915

1016
### Bug Fixes

0 commit comments

Comments
 (0)