Skip to content

Commit

Permalink
Bump ethereum-types to 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zjb0807 authored and vkgnosis committed Nov 16, 2022
1 parent 9ace678 commit 1465e03
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog].

[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/

## [18.0.0] - 2022-11-14
### Dependencies
- Bump ethereum-types to 0.14.0

## [17.2.0] - 2022-08-12
### Added
- Add `Token::into_tuple`
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi-cli"
version = "17.2.0"
version = "18.0.0"
authors = [
"Parity Technologies <admin@parity.io>",
"Artem Vorotnikov <artem@vorotnikov.me>",
Expand All @@ -14,7 +14,7 @@ edition = "2018"

[dependencies]
anyhow = "1"
ethabi = { version = "17.2.0", path = "../ethabi" }
ethabi = { version = "18.0.0", path = "../ethabi" }
hex = "0.4"
sha3 = "0.10"
structopt = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi-contract"
version = "17.2.0"
version = "18.0.0"
authors = [
"Parity Technologies <admin@parity.io>",
"Artem Vorotnikov <artem@vorotnikov.me>",
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi-derive"
version = "17.2.0"
version = "18.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "Apache-2.0"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dependencies]
ethabi = { path = "../ethabi", version = "17.2.0" }
ethabi = { path = "../ethabi", version = "18.0.0" }
heck = "0.4"
syn = { version = "1.0.13", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] }
quote = "1.0.2"
Expand Down
4 changes: 2 additions & 2 deletions ethabi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi"
version = "17.2.0"
version = "18.0.0"
authors = [
"Parity Technologies <admin@parity.io>",
"Artem Vorotnikov <artem@vorotnikov.me>",
Expand All @@ -17,7 +17,7 @@ hex = { version = "0.4", default-features = false, features = ["alloc"] }
serde = { version = "1.0", optional = true, default-features = false, features = ["derive"] }
serde_json = { version = "1.0", optional = true }
sha3 = { version = "0.10", default-features = false }
ethereum-types = { version = "0.13.1", default-features = false }
ethereum-types = { version = "0.14.0", default-features = false }
thiserror = { version = "1", optional = true }
uint = { version = "0.9.0", default-features = false, optional = true }
regex = { version = "1.5.4", optional = true }
Expand Down

0 comments on commit 1465e03

Please sign in to comment.