Skip to content

Commit f8897af

Browse files
committed
chore: release 0.6.4
1 parent 7e39882 commit f8897af

File tree

2 files changed

+49
-9
lines changed

2 files changed

+49
-9
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,45 @@ 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.4](https://github.com/alloy-rs/core/releases/tag/v0.6.4) - 2024-02-29
9+
10+
### Bug Fixes
11+
12+
- [dyn-abi] Correctly parse empty lists of bytes ([#548](https://github.com/alloy-rs/core/issues/548))
13+
- [dyn-abi] Enable `DynSolType.coerce_json` to convert array of numbers to bytes ([#541](https://github.com/alloy-rs/core/issues/541))
14+
15+
### Dependencies
16+
17+
- [deps] Update winnow to 0.6 ([#533](https://github.com/alloy-rs/core/issues/533))
18+
19+
### Documentation
20+
21+
- [primitives] Add a bytes! macro example ([#539](https://github.com/alloy-rs/core/issues/539))
22+
- Fix relative paths in README files ([#532](https://github.com/alloy-rs/core/issues/532))
23+
24+
### Features
25+
26+
- Add `TxKind` ([#542](https://github.com/alloy-rs/core/issues/542))
27+
- [core] Re-export `uint!` ([#537](https://github.com/alloy-rs/core/issues/537))
28+
- Derive Allocative on FixedBytes ([#531](https://github.com/alloy-rs/core/issues/531))
29+
30+
### Miscellaneous Tasks
31+
32+
- [primitives] Improve `from_slice` functions ([#546](https://github.com/alloy-rs/core/issues/546))
33+
- Allow unknown lints ([#543](https://github.com/alloy-rs/core/issues/543))
34+
- [core] Add comments to `cfg(doc)` ([#538](https://github.com/alloy-rs/core/issues/538))
35+
- Remove unused imports ([#534](https://github.com/alloy-rs/core/issues/534))
36+
37+
### Other
38+
39+
- Add concurrency ([#540](https://github.com/alloy-rs/core/issues/540))
40+
41+
### Testing
42+
43+
- Add another ABI encode test ([#547](https://github.com/alloy-rs/core/issues/547))
44+
- Add some more coerce error message tests ([#535](https://github.com/alloy-rs/core/issues/535))
45+
- Bless tests ([#530](https://github.com/alloy-rs/core/issues/530))
46+
847
## [0.6.3](https://github.com/alloy-rs/core/releases/tag/v0.6.3) - 2024-02-15
948

1049
### Bug Fixes
@@ -38,6 +77,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3877

3978
### Miscellaneous Tasks
4079

80+
- Release 0.6.3
4181
- Fix winnow deprecation warnings ([#507](https://github.com/alloy-rs/core/issues/507))
4282
- [sol-macro] Tweak inline attributes in generated code ([#505](https://github.com/alloy-rs/core/issues/505))
4383

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*", "tests/*"]
33
resolver = "2"
44

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

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

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

0 commit comments

Comments
 (0)