Skip to content

Commit

Permalink
Release 0.15.0 (#604)
Browse files Browse the repository at this point in the history
Contract mocks, batches for `DynTransport`.

### Test Plan

CI
  • Loading branch information
Tamika Nomara authored Aug 18, 2021
1 parent ec14829 commit 7a04fd7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ethcontract-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-common"
version = "0.14.0"
version = "0.15.0"
authors = ["Gnosis developers <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions ethcontract-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-derive"
version = "0.14.0"
version = "0.15.0"
authors = ["Gnosis developers <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -16,8 +16,8 @@ proc-macro = true

[dependencies]
anyhow = "1.0"
ethcontract-common = { version = "0.14.0", path = "../ethcontract-common" }
ethcontract-generate = { version = "0.14.0", path = "../ethcontract-generate" }
ethcontract-common = { version = "0.15.0", path = "../ethcontract-common" }
ethcontract-generate = { version = "0.15.0", path = "../ethcontract-generate" }
proc-macro2 = "1.0"
quote = "1.0"
syn = "1.0.12"
4 changes: 2 additions & 2 deletions ethcontract-generate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-generate"
version = "0.14.0"
version = "0.15.0"
authors = ["Gnosis developers <[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.14.0", path = "../ethcontract-common" }
ethcontract-common = { version = "0.15.0", path = "../ethcontract-common" }
Inflector = "0.11"
proc-macro2 = "1.0"
quote = "1.0"
Expand Down
6 changes: 3 additions & 3 deletions ethcontract-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract-mock"
version = "0.14.0"
version = "0.15.0"
authors = ["Gnosis developers <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -12,12 +12,12 @@ Tools for mocking ethereum contracts.
"""

[dependencies]
ethcontract = { version = "0.14.0", path = "../ethcontract" }
ethcontract = { version = "0.15.0", path = "../ethcontract" }
hex = "0.4"
mockall = "0.10"
rlp = "0.5"
predicates = "1.0"

[dev-dependencies]
tokio = { version = "1.6", features = ["macros"] }
ethcontract-derive = { version = "0.14.0", path = "../ethcontract-derive" }
ethcontract-derive = { version = "0.15.0", path = "../ethcontract-derive" }
6 changes: 3 additions & 3 deletions ethcontract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethcontract"
version = "0.14.0"
version = "0.15.0"
authors = ["Gnosis developers <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,8 +31,8 @@ ipc-tokio = ["web3/ipc-tokio"]

[dependencies]
arrayvec = "0.7"
ethcontract-common = { version = "0.14.0", path = "../ethcontract-common" }
ethcontract-derive = { version = "0.14.0", path = "../ethcontract-derive", optional = true}
ethcontract-common = { version = "0.15.0", path = "../ethcontract-common" }
ethcontract-derive = { version = "0.15.0", path = "../ethcontract-derive", optional = true}
futures = "0.3"
futures-timer = "3.0"
hex = "0.4"
Expand Down

0 comments on commit 7a04fd7

Please sign in to comment.