Skip to content

Commit

Permalink
Bump version. (#532)
Browse files Browse the repository at this point in the history
* Bump version.

* Update README
  • Loading branch information
tomusdrw committed Jul 29, 2021
1 parent 787ba1b commit b3955cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "web3"
version = "0.16.0"
version = "0.17.0"
description = "Ethereum JSON-RPC client."
homepage = "https://github.com/tomusdrw/rust-web3"
repository = "https://github.com/tomusdrw/rust-web3"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ First, add this to your `Cargo.toml`:

```toml
[dependencies]
web3 = "0.16.0"
web3 = "0.17.0"
```

## Example
Expand Down Expand Up @@ -104,15 +104,15 @@ web3.api::<CustomNamespace>().custom_method().wait().unwrap()
Currently, Windows does not support IPC, which is enabled in the library by default.
To compile, you need to disable the IPC feature:
```
web3 = { version = "0.16.0", default-features = false, features = ["http"] }
web3 = { version = "0.17.0", default-features = false, features = ["http"] }
```

# Avoiding OpenSSL dependency

On Linux, `native-tls` is implemented using OpenSSL. To avoid that dependency
for HTTPS use the corresponding feature.
```
web3 = { version = "0.16.0", default-features = false, features = ["http-rustls-tls"] }
web3 = { version = "0.17.0", default-features = false, features = ["http-rustls-tls"] }
```

# Cargo Features
Expand Down

0 comments on commit b3955cd

Please sign in to comment.