Skip to content

Commit bf1cad8

Browse files
authored
chore: release 0.8.11 (#803)
1 parent 17ae00a commit bf1cad8

File tree

12 files changed

+159
-11
lines changed

12 files changed

+159
-11
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,40 @@ 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
9+
10+
### Bug Fixes
11+
12+
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
13+
14+
### Documentation
15+
16+
- Update ethers-rs README note ([#798](https://github.com/alloy-rs/core/issues/798))
17+
18+
### Features
19+
20+
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
21+
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
22+
23+
### Miscellaneous Tasks
24+
25+
- Release 0.8.11
26+
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
27+
- [meta] Update SECURITY.md ([#793](https://github.com/alloy-rs/core/issues/793))
28+
29+
### Other
30+
31+
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))
32+
- Add success job ([#795](https://github.com/alloy-rs/core/issues/795))
33+
34+
### Performance
35+
36+
- Improve normalize_v ([#792](https://github.com/alloy-rs/core/issues/792))
37+
38+
### Styling
39+
40+
- Replace Signature with PrimitiveSignature ([#796](https://github.com/alloy-rs/core/issues/796))
41+
842
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
943

1044
### Bug Fixes
@@ -21,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2155

2256
### Miscellaneous Tasks
2357

58+
- Release 0.8.10
2459
- Address MSRV TODOs for 1.81 ([#781](https://github.com/alloy-rs/core/issues/781))
2560

2661
### Other

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.10"
6+
version = "0.8.11"
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.10", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.10", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.10", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.10", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.10", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.10", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.10", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.10", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.10", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.10", path = "crates/syn-solidity", default-features = false }
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 }
5252

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

crates/core/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+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.11
13+
14+
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.10
19+
820
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
921

1022
### Bug Fixes

crates/dyn-abi/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+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.11
13+
814
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
915

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

1622
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
1723

24+
### Miscellaneous Tasks
25+
26+
- Release 0.8.10
27+
1828
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
1929

2030
### Miscellaneous Tasks

crates/json-abi/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+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
9+
10+
### Features
11+
12+
- [json-abi] Add `AbiItem::json_type` ([#797](https://github.com/alloy-rs/core/issues/797))
13+
14+
### Miscellaneous Tasks
15+
16+
- [json-abi] Clean up utils ([#794](https://github.com/alloy-rs/core/issues/794))
17+
818
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
919

1020
### Documentation
1121

1222
- Fix param type in example comment ([#784](https://github.com/alloy-rs/core/issues/784))
1323

24+
### Miscellaneous Tasks
25+
26+
- Release 0.8.10
27+
1428
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
1529

1630
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ 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
9+
10+
### Bug Fixes
11+
12+
- [serde] Add alias `v` for `yParity` ([#801](https://github.com/alloy-rs/core/issues/801))
13+
14+
### Features
15+
16+
- Add has_eip155_value convenience function to signature ([#791](https://github.com/alloy-rs/core/issues/791))
17+
18+
### Other
19+
20+
- Revert "chore: replace Signature with PrimitiveSignature" ([#800](https://github.com/alloy-rs/core/issues/800))
21+
22+
### Performance
23+
24+
- Improve normalize_v ([#792](https://github.com/alloy-rs/core/issues/792))
25+
26+
### Styling
27+
28+
- Replace Signature with PrimitiveSignature ([#796](https://github.com/alloy-rs/core/issues/796))
29+
830
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
931

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

1638
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
1739

40+
### Miscellaneous Tasks
41+
42+
- Release 0.8.10
43+
1844
### Other
1945

2046
- Implement `DerefMut` for `Log<T>` ([#786](https://github.com/alloy-rs/core/issues/786))

crates/sol-macro-expander/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+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.11
13+
14+
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.10
19+
820
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
921

1022
### 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+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.11
13+
14+
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.10
19+
820
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
921

1022
### 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+
## [0.8.11](https://github.com/alloy-rs/core/releases/tag/v0.8.11) - 2024-11-05
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.11
13+
14+
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.10
19+
820
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
921

1022
### Miscellaneous Tasks

crates/sol-type-parser/CHANGELOG.md

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

1616
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
1717

18+
### Miscellaneous Tasks
19+
20+
- Release 0.8.10
21+
1822
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
1923

2024
### Miscellaneous Tasks

0 commit comments

Comments
 (0)