Skip to content

Commit 5d87767

Browse files
committed
chore: release 0.8.7
1 parent 2ec97c8 commit 5d87767

12 files changed

Lines changed: 74 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 7 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.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
9+
10+
### Other
11+
12+
- Revert "Add custom serialization for Address" ([#765](https://github.com/alloy-rs/core/issues/765))
13+
814
## [0.8.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
915

1016
### Bug Fixes
@@ -26,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2632

2733
### Miscellaneous Tasks
2834

35+
- Release 0.8.6
2936
- [meta] Update CODEOWNERS
3037
- Remove a stabilized impl_core function
3138

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.6"
6+
version = "0.8.7"
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.6", path = "crates/core", default-features = false }
43-
alloy-dyn-abi = { version = "0.8.6", path = "crates/dyn-abi", default-features = false }
44-
alloy-json-abi = { version = "0.8.6", path = "crates/json-abi", default-features = false }
45-
alloy-primitives = { version = "0.8.6", path = "crates/primitives", default-features = false }
46-
alloy-sol-macro = { version = "0.8.6", path = "crates/sol-macro", default-features = false }
47-
alloy-sol-macro-input = { version = "0.8.6", path = "crates/sol-macro-input", default-features = false }
48-
alloy-sol-macro-expander = { version = "0.8.6", path = "crates/sol-macro-expander", default-features = false }
49-
alloy-sol-type-parser = { version = "0.8.6", path = "crates/sol-type-parser", default-features = false }
50-
alloy-sol-types = { version = "0.8.6", path = "crates/sol-types", default-features = false }
51-
syn-solidity = { version = "0.8.6", path = "crates/syn-solidity", default-features = false }
42+
alloy-core = { version = "0.8.7", path = "crates/core", default-features = false }
43+
alloy-dyn-abi = { version = "0.8.7", path = "crates/dyn-abi", default-features = false }
44+
alloy-json-abi = { version = "0.8.7", path = "crates/json-abi", default-features = false }
45+
alloy-primitives = { version = "0.8.7", path = "crates/primitives", default-features = false }
46+
alloy-sol-macro = { version = "0.8.7", path = "crates/sol-macro", default-features = false }
47+
alloy-sol-macro-input = { version = "0.8.7", path = "crates/sol-macro-input", default-features = false }
48+
alloy-sol-macro-expander = { version = "0.8.7", path = "crates/sol-macro-expander", default-features = false }
49+
alloy-sol-type-parser = { version = "0.8.7", path = "crates/sol-type-parser", default-features = false }
50+
alloy-sol-types = { version = "0.8.7", path = "crates/sol-types", default-features = false }
51+
syn-solidity = { version = "0.8.7", 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: 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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.6
13+
814
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25
915

1016
### Miscellaneous Tasks

crates/dyn-abi/CHANGELOG.md

Lines changed: 7 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.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
9+
10+
### Other
11+
12+
- Revert "Add custom serialization for Address" ([#765](https://github.com/alloy-rs/core/issues/765))
13+
814
## [0.8.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
915

1016
### Bug Fixes
@@ -13,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1319

1420
### Miscellaneous Tasks
1521

22+
- Release 0.8.6
1623
- Remove a stabilized impl_core function
1724

1825
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25

crates/json-abi/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
- Fix lint `alloy-json-abi` ([#757](https://github.com/alloy-rs/core/issues/757))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.8.6
17+
1418
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25
1519

1620
### Miscellaneous Tasks

crates/primitives/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.7](https://github.com/alloy-rs/core/releases/tag/v0.8.7) - 2024-10-08
9+
10+
### Other
11+
12+
- Revert "Add custom serialization for Address" ([#765](https://github.com/alloy-rs/core/issues/765))
13+
814
## [0.8.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
915

1016
### Bug Fixes
@@ -20,6 +26,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2026
- Add `Default` for `Sealed<T>` ([#755](https://github.com/alloy-rs/core/issues/755))
2127
- [primitives] Add and use foldhash as default hasher ([#763](https://github.com/alloy-rs/core/issues/763))
2228

29+
### Miscellaneous Tasks
30+
31+
- Release 0.8.6
32+
2333
### Other
2434

2535
- Derive `Arbitrary` for `Sealed<T>` ([#762](https://github.com/alloy-rs/core/issues/762))

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
- Fix lint `alloy-sol-macro-expander` ([#760](https://github.com/alloy-rs/core/issues/760))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.8.6
17+
1418
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25
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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.6
13+
814
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25
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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.6
13+
814
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25
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.6](https://github.com/alloy-rs/core/releases/tag/v0.8.6) - 2024-10-06
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.6
13+
814
## [0.8.5](https://github.com/alloy-rs/core/releases/tag/v0.8.5) - 2024-09-25
915

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)