Skip to content

Commit d9ad5fb

Browse files
committed
chore: release 0.8.10
1 parent 4a65734 commit d9ad5fb

File tree

12 files changed

+165
-11
lines changed

12 files changed

+165
-11
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
9+
10+
### Bug Fixes
11+
12+
- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789))
13+
14+
### Dependencies
15+
16+
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
17+
18+
### Documentation
19+
20+
- Fix param type in example comment ([#784](https://github.com/alloy-rs/core/issues/784))
21+
22+
### Miscellaneous Tasks
23+
24+
- Address MSRV TODOs for 1.81 ([#781](https://github.com/alloy-rs/core/issues/781))
25+
26+
### Other
27+
28+
- Implement `DerefMut` for `Log<T>` ([#786](https://github.com/alloy-rs/core/issues/786))
29+
30+
### Refactor
31+
32+
- Use simple boolean for parity in signature ([#776](https://github.com/alloy-rs/core/issues/776))
33+
834
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
935

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

1642
- Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773))
1743

44+
### Miscellaneous Tasks
45+
46+
- Release 0.8.9
47+
1848
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
1949

2050
### Bug Fixes

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

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

crates/core/CHANGELOG.md

Lines changed: 4 additions & 0 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
- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.8.9
17+
1418
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
1519

1620
### Miscellaneous Tasks

crates/dyn-abi/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
9+
10+
### Bug Fixes
11+
12+
- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789))
13+
14+
### Dependencies
15+
16+
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
17+
18+
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.8.9
23+
824
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
925

1026
### 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+
## [0.8.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
9+
10+
### Documentation
11+
12+
- Fix param type in example comment ([#784](https://github.com/alloy-rs/core/issues/784))
13+
14+
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.9
19+
820
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
921

1022
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
9+
10+
### Bug Fixes
11+
12+
- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789))
13+
14+
### Dependencies
15+
16+
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
17+
18+
### Other
19+
20+
- Implement `DerefMut` for `Log<T>` ([#786](https://github.com/alloy-rs/core/issues/786))
21+
22+
### Refactor
23+
24+
- Use simple boolean for parity in signature ([#776](https://github.com/alloy-rs/core/issues/776))
25+
826
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
927

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

1634
- Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773))
1735

36+
### Miscellaneous Tasks
37+
38+
- Release 0.8.9
39+
1840
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
1941

2042
### Bug Fixes

crates/sol-macro-expander/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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.9
13+
814
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
915

1016
### Bug Fixes

crates/sol-macro-input/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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.9
13+
814
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
915

1016
### Miscellaneous Tasks

crates/sol-macro/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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.9
13+
814
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
915

1016
### Miscellaneous Tasks

crates/sol-type-parser/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.10](https://github.com/alloy-rs/core/releases/tag/v0.8.10) - 2024-10-28
9+
10+
### Bug Fixes
11+
12+
- Revert MSRV changes ([#789](https://github.com/alloy-rs/core/issues/789))
13+
14+
### Dependencies
15+
16+
- Bump MSRV to 1.81 & use `core::error::Error` in place of `std` ([#780](https://github.com/alloy-rs/core/issues/780))
17+
18+
## [0.8.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.8.9
23+
824
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
925

1026
### Miscellaneous Tasks

0 commit comments

Comments
 (0)