Skip to content

Commit

Permalink
Release 0.15.4 (#672)
Browse files Browse the repository at this point in the history
The only change is the fix to how we invoke anyhow which fixes compilation on the newest anyhow version.

### Test Plan
CI
  • Loading branch information
vkgnosis authored Dec 1, 2021
1 parent be8b6f6 commit 3a607c2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 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.15.3"
version = "0.15.4"
authors = ["Gnosis developers <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion ethcontract-common/src/bytecode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ impl<'a> Iterator for CodeIter<'a> {
Some(Ok(block))
}
}
None => Some(Ok(mem::replace(&mut self.0, ""))),
None => Some(Ok(mem::take(&mut self.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.15.3"
version = "0.15.4"
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.15.3", path = "../ethcontract-common" }
ethcontract-generate = { version = "0.15.3", path = "../ethcontract-generate" }
ethcontract-common = { version = "0.15.4", path = "../ethcontract-common" }
ethcontract-generate = { version = "0.15.4", 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.15.3"
version = "0.15.4"
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.15.3", path = "../ethcontract-common" }
ethcontract-common = { version = "0.15.4", 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.15.3"
version = "0.15.4"
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.15.3", path = "../ethcontract" }
ethcontract = { version = "0.15.4", path = "../ethcontract" }
hex = "0.4"
mockall = "0.10"
rlp = "0.5"
predicates = "2.0"

[dev-dependencies]
tokio = { version = "1.6", features = ["macros"] }
ethcontract-derive = { version = "0.15.3", path = "../ethcontract-derive" }
ethcontract-derive = { version = "0.15.4", 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.15.3"
version = "0.15.4"
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.15.3", path = "../ethcontract-common" }
ethcontract-derive = { version = "0.15.3", path = "../ethcontract-derive", optional = true}
ethcontract-common = { version = "0.15.4", path = "../ethcontract-common" }
ethcontract-derive = { version = "0.15.4", path = "../ethcontract-derive", optional = true}
futures = "0.3"
futures-timer = "3.0"
hex = "0.4"
Expand Down

0 comments on commit 3a607c2

Please sign in to comment.