Skip to content

Commit

Permalink
chore: release 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed May 14, 2024
1 parent d8dbf4e commit f52fe01
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 11 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ 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.7.3](https://github.com/alloy-rs/core/releases/tag/v0.7.3) - 2024-05-14

### Documentation

- Update alloy-core homepage link

### Features

- [dyn-abi] Derive `Eq` for `TypedData` ([#623](https://github.com/alloy-rs/core/issues/623))
- [sol-macro] Allow missing docs for event fields ([#619](https://github.com/alloy-rs/core/issues/619))

### Miscellaneous Tasks

- Fix tests ([#624](https://github.com/alloy-rs/core/issues/624))
- Unused cfgs

### Refactor

- Move `expand` from `sol-macro` to its own crate ([#626](https://github.com/alloy-rs/core/issues/626))

## [0.7.2](https://github.com/alloy-rs/core/releases/tag/v0.7.2) - 2024-05-02

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

### Miscellaneous Tasks

- Release 0.7.2
- [general] Add basic CI workflow for Windows ([#613](https://github.com/alloy-rs/core/issues/613))

### Other
Expand Down
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"]
resolver = "2"

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

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

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

0 comments on commit f52fe01

Please sign in to comment.