Skip to content

Commit

Permalink
v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
debris committed Aug 23, 2017
1 parent 792c7ca commit b0f5b21
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 29 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 = "3.0.0"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
keywords = ["ethereum", "eth", "abi", "solidity", "cli"]
description = "Easy to use cli for conversion of ethereum contract calls to bytecode."
Expand All @@ -12,7 +12,7 @@ rustc-hex = "1.0"
serde = "1.0"
serde_derive = "1.0"
docopt = "0.8.1"
ethabi = { version = "3.0", path = "../ethabi" }
ethabi = { version = "4.0", path = "../ethabi" }
error-chain = { version = "0.11.0-rc.2", default-features = false }

[features]
Expand Down
8 changes: 6 additions & 2 deletions contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[package]
name = "ethabi-contract"
version = "0.1.0"
authors = ["debris <marek.kotewicz@gmail.com>"]
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT"
keywords = ["ethereum", "eth", "abi", "solidity", "derive"]
description = "Easy to use conversion of ethereum contract calls to bytecode."
10 changes: 7 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
[package]
name = "ethabi-derive"
version = "0.1.0"
authors = ["debris <marek.kotewicz@gmail.com>"]
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT"
keywords = ["ethereum", "eth", "abi", "solidity", "derive"]
description = "Easy to use conversion of ethereum contract calls to bytecode."

[lib]
proc-macro = true

[dependencies]
ethabi = { path = "../ethabi" }
ethabi = { path = "../ethabi", version = "4.0" }
heck = "0.2"
syn = "0.11.11"
quote = "0.3.15"
2 changes: 1 addition & 1 deletion ethabi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi"
version = "3.0.0"
version = "4.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT"
Expand Down

0 comments on commit b0f5b21

Please sign in to comment.