Skip to content

Commit 5bed83c

Browse files
committed
chore: release 0.6.2
1 parent 60ab793 commit 5bed83c

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

CHANGELOG.md

+7
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.6.2](https://github.com/alloy-rs/core/releases/tag/v0.6.2) - 2024-01-25
9+
10+
### Bug Fixes
11+
12+
- [`signature`] Construct Signature bytes using v+27 when we do not have an EIP155 `v` ([#503](https://github.com/alloy-rs/core/issues/503))
13+
814
## [0.6.1](https://github.com/alloy-rs/core/releases/tag/v0.6.1) - 2024-01-25
915

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

2531
### Miscellaneous Tasks
2632

33+
- Release 0.6.1
2734
- Add SECURITY.md ([#494](https://github.com/alloy-rs/core/issues/494))
2835
- [primitives] Pass B256 by reference in Signature methods ([#487](https://github.com/alloy-rs/core/issues/487))
2936
- Include path in error ([#486](https://github.com/alloy-rs/core/issues/486))

Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.6.1"
6+
version = "0.6.2"
77
edition = "2021"
88
rust-version = "1.65"
99
authors = ["Alloy Contributors"]
@@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"]
1818

1919
[workspace.dependencies]
2020
# workspace crates
21-
alloy-dyn-abi = { version = "0.6.1", path = "crates/dyn-abi", default-features = false }
22-
alloy-json-abi = { version = "0.6.1", path = "crates/json-abi", default-features = false }
23-
alloy-primitives = { version = "0.6.1", path = "crates/primitives", default-features = false }
24-
alloy-sol-macro = { version = "0.6.1", path = "crates/sol-macro", default-features = false }
25-
alloy-sol-type-parser = { version = "0.6.1", path = "crates/sol-type-parser", default-features = false }
26-
alloy-sol-types = { version = "0.6.1", path = "crates/sol-types", default-features = false }
27-
syn-solidity = { version = "0.6.1", path = "crates/syn-solidity", default-features = false }
21+
alloy-dyn-abi = { version = "0.6.2", path = "crates/dyn-abi", default-features = false }
22+
alloy-json-abi = { version = "0.6.2", path = "crates/json-abi", default-features = false }
23+
alloy-primitives = { version = "0.6.2", path = "crates/primitives", default-features = false }
24+
alloy-sol-macro = { version = "0.6.2", path = "crates/sol-macro", default-features = false }
25+
alloy-sol-type-parser = { version = "0.6.2", path = "crates/sol-type-parser", default-features = false }
26+
alloy-sol-types = { version = "0.6.2", path = "crates/sol-types", default-features = false }
27+
syn-solidity = { version = "0.6.2", path = "crates/syn-solidity", default-features = false }
2828

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

0 commit comments

Comments
 (0)