Skip to content

Commit

Permalink
Bump to v0.7.0 (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
nlordell authored Apr 23, 2020
1 parent bc7832e commit d700f90
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract"
version = "0.6.1"
version = "0.7.0"
authors = ["Nicholas Rodrigues Lordello <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,8 +31,8 @@ members = [

[dependencies]
ethabi_9_0 = { package = "ethabi", version = "9.0" }
ethcontract-common = { version = "0.6.1", path = "./common" }
ethcontract-derive = { version = "0.6.1", path = "./derive", optional = true}
ethcontract-common = { version = "0.7.0", path = "./common" }
ethcontract-derive = { version = "0.7.0", path = "./derive", optional = true}
futures = { version = "0.3", features = ["compat"] }
futures-timer = "3.0"
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-common"
version = "0.6.1"
version = "0.7.0"
authors = ["Nicholas Rodrigues Lordello <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-derive"
version = "0.6.1"
version = "0.7.0"
authors = ["Nicholas Rodrigues Lordello <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -15,8 +15,8 @@ Proc macro for generating type-safe bindings to Ethereum smart contracts.
proc-macro = true

[dependencies]
ethcontract-common = { version = "0.6.1", path = "../common" }
ethcontract-generate = { version = "0.6.1", path = "../generate" }
ethcontract-common = { version = "0.7.0", path = "../common" }
ethcontract-generate = { version = "0.7.0", path = "../generate" }
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0.12"
2 changes: 1 addition & 1 deletion examples/generate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "examples-generate"
version = "0.6.1"
version = "0.7.0"
publish = false
authors = ["Nicholas Rodrigues Lordello <[email protected]>"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion examples/truffle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ethcontract-contracts",
"version": "0.6.1",
"version": "0.7.0",
"private": "true",
"description": "Test contracts for ethcontract-rs runtime and proc macro.",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions generate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-generate"
version = "0.6.1"
version = "0.7.0"
authors = ["Nicholas Rodrigues Lordello <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ Code generation for type-safe bindings to Ethereum smart contracts.
[dependencies]
anyhow = "1.0"
curl = "0.4"
ethcontract-common = { version = "0.6.1", path = "../common" }
ethcontract-common = { version = "0.7.0", path = "../common" }
Inflector = "0.11"
proc-macro2 = "1.0"
quote = "1.0"
Expand Down

0 comments on commit d700f90

Please sign in to comment.