Skip to content

Commit 386b6b8

Browse files
committed
chore: release 0.8.9
1 parent 0ba6265 commit 386b6b8

File tree

12 files changed

+97
-11
lines changed

12 files changed

+97
-11
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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+
### Bug Fixes
11+
12+
- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777))
13+
14+
### Features
15+
16+
- Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773))
17+
818
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
919

1020
### Bug Fixes
@@ -17,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1727

1828
- Add logs_bloom ([#768](https://github.com/alloy-rs/core/issues/768))
1929

30+
### Miscellaneous Tasks
31+
32+
- Release 0.8.8
33+
2034
## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
2135

2236
### Miscellaneous Tasks

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.8"
6+
version = "0.8.9"
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.8", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.8", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.8", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.8", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.8", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.8", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.8", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.8", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.8", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.8", path = "crates/syn-solidity", default-features = false }
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 }
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.9](https://github.com/alloy-rs/core/releases/tag/v0.8.9) - 2024-10-21
9+
10+
### Bug Fixes
11+
12+
- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777))
13+
14+
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.8
19+
820
## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
921

1022
### Miscellaneous Tasks

crates/dyn-abi/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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.8
13+
814
## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
915

1016
### Miscellaneous Tasks

crates/json-abi/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.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.8
13+
814
## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
915

1016
### Miscellaneous Tasks

crates/primitives/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ 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+
### Bug Fixes
11+
12+
- Re-enable foldhash by default, but exclude it from zkvm ([#777](https://github.com/alloy-rs/core/issues/777))
13+
14+
### Features
15+
16+
- Expand Seal api ([#773](https://github.com/alloy-rs/core/issues/773))
17+
818
## [0.8.8](https://github.com/alloy-rs/core/releases/tag/v0.8.8) - 2024-10-14
919

1020
### Bug Fixes
@@ -16,6 +26,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1626

1727
- Add logs_bloom ([#768](https://github.com/alloy-rs/core/issues/768))
1828

29+
### Miscellaneous Tasks
30+
31+
- Release 0.8.8
32+
1933
## [0.8.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
2034

2135
### Miscellaneous Tasks

crates/sol-macro-expander/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
- [alloy-sol-macro] Allow clippy::pub_underscore_fields on `sol!` output ([#770](https://github.com/alloy-rs/core/issues/770))
1313

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

1620
### Miscellaneous Tasks

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

1016
### Miscellaneous Tasks

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

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)