Skip to content

Commit

Permalink
Release v0.17.0-rc3 (#684)
Browse files Browse the repository at this point in the history
* Update CHANGELOG for v0.17.0-rc3

Signed-off-by: Thane Thomson <connect@thanethomson.com>

* Bump all versions to v0.17.0-rc3

Signed-off-by: Thane Thomson <connect@thanethomson.com>
  • Loading branch information
thanethomson authored Nov 18, 2020
1 parent ad3b00d commit 91bc1f6
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 21 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## Unreleased
## v0.17.0-rc3

*Nov 18, 2020*

This release candidate focuses primarily on small but important fixes to our
serialization infrastructure.

### BREAKING CHANGES:

Expand Down
6 changes: 3 additions & 3 deletions light-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-light-client"
version = "0.17.0-rc2"
version = "0.17.0-rc3"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -27,8 +27,8 @@ rpc-client = ["tendermint-rpc/http-client"]
secp256k1 = ["tendermint/secp256k1", "tendermint-rpc/secp256k1"]

[dependencies]
tendermint = { version = "0.17.0-rc2", path = "../tendermint" }
tendermint-rpc = { version = "0.17.0-rc2", path = "../rpc", default-features = false }
tendermint = { version = "0.17.0-rc3", path = "../tendermint" }
tendermint-rpc = { version = "0.17.0-rc3", path = "../rpc", default-features = false }

anomaly = { version = "0.2.0", features = ["serializer"] }
contracts = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion light-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
nonstandard_style
)]
#![doc(
html_root_url = "https://docs.rs/tendermint-light-client/0.17.0-rc2",
html_root_url = "https://docs.rs/tendermint-light-client/0.17.0-rc3",
html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png"
)]

Expand Down
8 changes: 4 additions & 4 deletions light-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-light-node"
version = "0.17.0-rc2"
version = "0.17.0-rc3"
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/informalsystems/tendermint-rs"
Expand Down Expand Up @@ -38,9 +38,9 @@ jsonrpc-derive = "14.2"
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1.0"
sled = "0.34.3"
tendermint = { version = "0.17.0-rc2", path = "../tendermint" }
tendermint-light-client = { version = "0.17.0-rc2", path = "../light-client" }
tendermint-rpc = { version = "0.17.0-rc2", path = "../rpc", features = [ "http-client" ] }
tendermint = { version = "0.17.0-rc3", path = "../tendermint" }
tendermint-light-client = { version = "0.17.0-rc3", path = "../light-client" }
tendermint-rpc = { version = "0.17.0-rc3", path = "../rpc", features = [ "http-client" ] }
thiserror = "1.0"
tokio = { version = "0.2", features = ["full"] }

Expand Down
2 changes: 1 addition & 1 deletion light-node/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
unused_qualifications
)]
#![doc(
html_root_url = "https://docs.rs/tendermint-light-node/0.17.0-rc2",
html_root_url = "https://docs.rs/tendermint-light-node/0.17.0-rc3",
html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png"
)]

Expand Down
2 changes: 1 addition & 1 deletion proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-proto"
version = "0.17.0-rc2"
version = "0.17.0-rc3"
authors = ["Greg Szabo <greg@informal.systems>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion proto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#![deny(warnings, trivial_casts, trivial_numeric_casts, unused_import_braces)]
#![allow(clippy::large_enum_variant)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.17.0-rc2")]
#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.17.0-rc3")]

// Built-in prost_types with slight customization to enable JSON-encoding
pub mod google {
Expand Down
2 changes: 1 addition & 1 deletion rpc-probe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-rpc-probe"
version = "0.1.0"
version = "0.17.0-rc3"
authors = ["Thane Thomson <thane@informal.systems>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-rpc"
version = "0.17.0-rc2"
version = "0.17.0-rc3"
edition = "2018"
license = "Apache-2.0"
homepage = "https://www.tendermint.com/"
Expand Down Expand Up @@ -46,8 +46,8 @@ getrandom = "0.1"
serde = { version = "1", features = [ "derive" ] }
serde_bytes = "0.11"
serde_json = "1"
tendermint = { version = "0.17.0-rc2", path = "../tendermint" }
tendermint-proto = { version = "0.17.0-rc2", path = "../proto" }
tendermint = { version = "0.17.0-rc3", path = "../tendermint" }
tendermint-proto = { version = "0.17.0-rc3", path = "../proto" }
thiserror = "1"
uuid = { version = "0.8", default-features = false }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
Expand Down
4 changes: 2 additions & 2 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint"
version = "0.17.0-rc2" # Also update `html_root_url` in lib.rs and
version = "0.17.0-rc3" # Also update `html_root_url` in lib.rs and
# depending crates (rpc, light-node, ..) when bumping this
license = "Apache-2.0"
homepage = "https://www.tendermint.com/"
Expand Down Expand Up @@ -53,7 +53,7 @@ signature = "1.2"
subtle = "2"
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
thiserror = "1"
tendermint-proto = { version = "0.17.0-rc2", path = "../proto" }
tendermint-proto = { version = "0.17.0-rc3", path = "../proto" }
toml = { version = "0.5" }
zeroize = { version = "1.1", features = ["zeroize_derive"] }

Expand Down
2 changes: 1 addition & 1 deletion tendermint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
)]
#![forbid(unsafe_code)]
#![doc(
html_root_url = "https://docs.rs/tendermint/0.17.0-rc2",
html_root_url = "https://docs.rs/tendermint/0.17.0-rc3",
html_logo_url = "https://raw.githubusercontent.com/informalsystems/tendermint-rs/master/img/logo-tendermint-rs_3961x4001.png"
)]

Expand Down
4 changes: 2 additions & 2 deletions testgen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-testgen"
version = "0.17.0-rc2"
version = "0.17.0-rc3"
authors = ["Andrey Kuprianov <andrey@informal.systems>", "Shivani Joshi <shivani@informal.systems>"]
edition = "2018"
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ description = """
"""

[dependencies]
tendermint = { version = "0.17.0-rc2", path = "../tendermint" }
tendermint = { version = "0.17.0-rc3", path = "../tendermint" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ed25519-dalek = "1"
Expand Down

0 comments on commit 91bc1f6

Please sign in to comment.