Skip to content

Commit

Permalink
chore: release 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Sep 29, 2023
1 parent 7f99aa7 commit 7dc48eb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ 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).

## [Unreleased](https://github.com/alloy-rs/core/compare/v0.3.2...HEAD)
## [0.4.0](https://github.com/alloy-rs/core/releases/tag/0.4.0) - 2023-09-29

### Bug Fixes

- Test
- Implement EventTopic for generated enums ([#320](https://github.com/alloy-rs/core/issues/320))
- Add super import on generated modules ([#307](https://github.com/alloy-rs/core/issues/307))
- Respect `all_derives = false`, fix custom type printing ([#272](https://github.com/alloy-rs/core/issues/272))
Expand All @@ -26,7 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Documentation

- Add automated CHANGELOG.md
- Add automated CHANGELOG.md ([#322](https://github.com/alloy-rs/core/issues/322))
- Improve `ResolveSolType` documentation ([#296](https://github.com/alloy-rs/core/issues/296))
- Document dollar sign in idents ([#288](https://github.com/alloy-rs/core/issues/288))
- Add note regarding ruint::uint macro ([#265](https://github.com/alloy-rs/core/issues/265))
Expand Down Expand Up @@ -408,4 +409,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add custom sol structs to tests and docs
- Clean up some type check and add a couple new ones

<!-- generated by git-cliff -->
<!-- generated by git-cliff -->
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.3.2"
version = "0.4.0"
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.3.2", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.3.2", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.3.2", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.3.2", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.3.2", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.3.2", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.3.2", path = "crates/syn-solidity", default-features = false }
alloy-dyn-abi = { version = "0.4.0", path = "crates/dyn-abi", default-features = false }
alloy-json-abi = { version = "0.4.0", path = "crates/json-abi", default-features = false }
alloy-primitives = { version = "0.4.0", path = "crates/primitives", default-features = false }
alloy-sol-macro = { version = "0.4.0", path = "crates/sol-macro", default-features = false }
alloy-sol-type-parser = { version = "0.4.0", path = "crates/sol-type-parser", default-features = false }
alloy-sol-types = { version = "0.4.0", path = "crates/sol-types", default-features = false }
syn-solidity = { version = "0.4.0", path = "crates/syn-solidity", default-features = false }

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

0 comments on commit 7dc48eb

Please sign in to comment.