diff --git a/Cargo.toml b/Cargo.toml index c844fd0a..7d108b08 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "web3" -version = "0.10.0" +version = "0.11.0" description = "Ethereum JSON-RPC client." homepage = "https://github.com/tomusdrw/rust-web3" repository = "https://github.com/tomusdrw/rust-web3" diff --git a/README.md b/README.md index 640329a7..61031a36 100644 --- a/README.md +++ b/README.md @@ -94,5 +94,5 @@ web3.api::().custom_method().wait().unwrap() Currently, Windows does not support IPC, which is enabled in the library by default. To complile, you need to disable IPC feature: ``` -web3 = { version = "0.1.0", default-features = false, features = ["http"] } +web3 = { version = "0.11.0", default-features = false, features = ["http"] } ```