Skip to content

Commit

Permalink
chore: release 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Jan 25, 2024
1 parent 60ab793 commit 5bed83c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.2](https://github.com/alloy-rs/core/releases/tag/v0.6.2) - 2024-01-25

### Bug Fixes

- [`signature`] Construct Signature bytes using v+27 when we do not have an EIP155 `v` ([#503](https://github.com/alloy-rs/core/issues/503))

## [0.6.1](https://github.com/alloy-rs/core/releases/tag/v0.6.1) - 2024-01-25

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

### Miscellaneous Tasks

- Release 0.6.1
- Add SECURITY.md ([#494](https://github.com/alloy-rs/core/issues/494))
- [primitives] Pass B256 by reference in Signature methods ([#487](https://github.com/alloy-rs/core/issues/487))
- Include path in error ([#486](https://github.com/alloy-rs/core/issues/486))
Expand Down
16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.6.1"
version = "0.6.2"
edition = "2021"
rust-version = "1.65"
authors = ["Alloy Contributors"]
Expand All @@ -18,13 +18,13 @@ rustdoc-args = ["--cfg", "docsrs"]

[workspace.dependencies]
# workspace crates
alloy-dyn-abi = { version = "0.6.1", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.6.1", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.6.1", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.6.1", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.6.1", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.6.1", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.6.1", path = "crates/syn-solidity", default-features = false }
alloy-dyn-abi = { version = "0.6.2", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.6.2", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.6.2", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.6.2", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.6.2", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.6.2", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.6.2", path = "crates/syn-solidity", default-features = false }

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

0 comments on commit 5bed83c

Please sign in to comment.