git.delta.rocks / unique-network / refs/commits / 2274edcfd83b

difftreelog

bump versions

Trubnikov Sergey2022-11-30parent: #3ea185a.patch.diff
in: master

4 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2337,7 +2337,7 @@
 
 [[package]]
 name = "evm-coder"
-version = "0.1.4"
+version = "0.1.5"
 dependencies = [
  "ethereum",
  "evm-coder-procedural",
@@ -2356,7 +2356,7 @@
 
 [[package]]
 name = "evm-coder-procedural"
-version = "0.2.1"
+version = "0.2.2"
 dependencies = [
  "Inflector",
  "hex",
modifiedcrates/evm-coder/CHANGELOG.mddiffbeforeafterboth
--- a/crates/evm-coder/CHANGELOG.md
+++ b/crates/evm-coder/CHANGELOG.md
@@ -3,6 +3,10 @@
 All notable changes to this project will be documented in this file.
 
 <!-- bureaucrate goes here -->
+## [v0.1.5] - 2022-11-30
+
+### Added
+- Derive macro to support structures and enums.
 
 ## [v0.1.4] - 2022-11-02
 
modifiedcrates/evm-coder/Cargo.tomldiffbeforeafterboth
--- a/crates/evm-coder/Cargo.toml
+++ b/crates/evm-coder/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "evm-coder"
-version = "0.1.4"
+version = "0.1.5"
 license = "GPLv3"
 edition = "2021"
 
modifiedcrates/evm-coder/procedural/Cargo.tomldiffbeforeafterboth
before · crates/evm-coder/procedural/Cargo.toml
1[package]2name = "evm-coder-procedural"3version = "0.2.1"4license = "GPLv3"5edition = "2021"67[lib]8proc-macro = true910[dependencies]11# Ethereum uses keccak (=sha3) for selectors12sha3 = "0.10.1"13# Value formatting14hex = "0.4.3"15Inflector = "0.11.4"16# General proc-macro utilities17quote = "1.0"18proc-macro2 = "1.0"19syn = { version = "1.0", features = ["full"] }
after · crates/evm-coder/procedural/Cargo.toml
1[package]2name = "evm-coder-procedural"3version = "0.2.2"4license = "GPLv3"5edition = "2021"67[lib]8proc-macro = true910[dependencies]11# Ethereum uses keccak (=sha3) for selectors12sha3 = "0.10.1"13# Value formatting14hex = "0.4.3"15Inflector = "0.11.4"16# General proc-macro utilities17quote = "1.0"18proc-macro2 = "1.0"19syn = { version = "1.0", features = ["full"] }