Skip to content

Commit

Permalink
chore: release 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Dec 16, 2023
1 parent e2798c2 commit dfc205b
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,35 @@ 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.5.3](https://github.com/alloy-rs/core/releases/tag/v0.5.3) - 2023-12-16

### Bug Fixes

- [sol-types] Un-break decode revert ([#457](https://github.com/alloy-rs/core/issues/457))
- Ingest domain when instantiating TypedData ([#453](https://github.com/alloy-rs/core/issues/453))
- Don't decode ZSTs ([#454](https://github.com/alloy-rs/core/issues/454))
- [primitives] Return correct fixed length in ssz::Encode ([#451](https://github.com/alloy-rs/core/issues/451))

### Features

- Address from pubkey ([#455](https://github.com/alloy-rs/core/issues/455))
- Add `RevertReason` enum ([#450](https://github.com/alloy-rs/core/issues/450))
- [primitives] Update Bytes formatting, add UpperHex ([#446](https://github.com/alloy-rs/core/issues/446))

### Miscellaneous Tasks

- Bless tests ([#456](https://github.com/alloy-rs/core/issues/456))

## [0.5.2](https://github.com/alloy-rs/core/releases/tag/v0.5.2) - 2023-12-01

### Bug Fixes

- [dyn-abi] Fixed arrays coerce_str ([#442](https://github.com/alloy-rs/core/issues/442))

### Miscellaneous Tasks

- Release 0.5.2

### Testing

- Add some regression tests ([#443](https://github.com/alloy-rs/core/issues/443))
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.5.2"
version = "0.5.3"
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.5.2", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.5.2", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.5.2", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.5.2", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.5.2", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.5.2", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.5.2", path = "crates/syn-solidity", default-features = false }
alloy-dyn-abi = { version = "0.5.3", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.5.3", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.5.3", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.5.3", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.5.3", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.5.3", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.5.3", path = "crates/syn-solidity", default-features = false }

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

0 comments on commit dfc205b

Please sign in to comment.