Skip to content

Commit f31d22b

Browse files
authored
v0.17.0 update version (#732)
1 parent 1c5d500 commit f31d22b

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

ethcontract-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethcontract-common"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Gnosis developers <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"

ethcontract-derive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethcontract-derive"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Gnosis developers <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -20,8 +20,8 @@ proc-macro = true
2020

2121
[dependencies]
2222
anyhow = "1.0"
23-
ethcontract-common = { version = "0.16.0", path = "../ethcontract-common" }
24-
ethcontract-generate = { version = "0.16.0", path = "../ethcontract-generate", default-features = false }
23+
ethcontract-common = { version = "0.17.0", path = "../ethcontract-common" }
24+
ethcontract-generate = { version = "0.17.0", path = "../ethcontract-generate", default-features = false }
2525
proc-macro2 = "1.0"
2626
quote = "1.0"
2727
syn = "1.0.12"

ethcontract-generate/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethcontract-generate"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Gnosis developers <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -18,7 +18,7 @@ http = ["curl"]
1818
[dependencies]
1919
anyhow = "1.0"
2020
curl = { version = "0.4", optional = true }
21-
ethcontract-common = { version = "0.16.0", path = "../ethcontract-common" }
21+
ethcontract-common = { version = "0.17.0", path = "../ethcontract-common" }
2222
Inflector = "0.11"
2323
proc-macro2 = "1.0"
2424
quote = "1.0"

ethcontract-mock/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethcontract-mock"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Gnosis developers <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -12,12 +12,12 @@ Tools for mocking ethereum contracts.
1212
"""
1313

1414
[dependencies]
15-
ethcontract = { version = "0.16.0", path = "../ethcontract", default-features = false, features = ["derive"] }
15+
ethcontract = { version = "0.17.0", path = "../ethcontract", default-features = false, features = ["derive"] }
1616
hex = "0.4"
1717
mockall = "0.11"
1818
rlp = "0.5"
1919
predicates = "2.0"
2020

2121
[dev-dependencies]
2222
tokio = { version = "1.6", features = ["macros", "rt"] }
23-
ethcontract-derive = { version = "0.16.0", path = "../ethcontract-derive", default-features = false }
23+
ethcontract-derive = { version = "0.17.0", path = "../ethcontract-derive", default-features = false }

ethcontract/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethcontract"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
authors = ["Gnosis developers <[email protected]>"]
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
@@ -32,8 +32,8 @@ ipc-tokio = ["web3/ipc-tokio"]
3232

3333
[dependencies]
3434
arrayvec = "0.7"
35-
ethcontract-common = { version = "0.16.0", path = "../ethcontract-common" }
36-
ethcontract-derive = { version = "0.16.0", path = "../ethcontract-derive", optional = true, default-features = false }
35+
ethcontract-common = { version = "0.17.0", path = "../ethcontract-common" }
36+
ethcontract-derive = { version = "0.17.0", path = "../ethcontract-derive", optional = true, default-features = false }
3737
futures = "0.3"
3838
futures-timer = "3.0"
3939
hex = "0.4"

0 commit comments

Comments
 (0)