Skip to content

Commit

Permalink
Release v0.18.1 (#808)
Browse files Browse the repository at this point in the history
* Bump version to v0.18.1

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

* Update CHANGELOG for v0.18.1 release

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

* Always sleep before crate check during release

Often, while doing a release, this check comes back saying that the
crate's available, and then when we try to build the next package it
fails because the crate isn't yet available on crates.io.

Adding a 5-second sleep in here is a last-ditch attempt to give the CDN
(if it's a CDN that backs crates.io) a little time to catch up with
their API.

Signed-off-by: Thane Thomson <connect@thanethomson.com>
  • Loading branch information
thanethomson committed Feb 11, 2021
1 parent 7a4a85d commit a7baee9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.18.0"
version = "0.18.1"
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.18.0")]
#![doc(html_root_url = "https://docs.rs/tendermint-proto/0.18.1")]

/// Built-in prost_types with slight customization to enable JSON-encoding
#[allow(warnings)]
Expand Down
6 changes: 3 additions & 3 deletions tools/kvstore-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ edition = "2018"

[dev-dependencies]
futures = "0.3"
tendermint = { version = "0.18.0", path = "../../tendermint" }
tendermint-light-client = { version = "0.18.0", path = "../../light-client", features = ["unstable"] }
tendermint-rpc = { version = "0.18.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] }
tendermint = { version = "0.18.1", path = "../../tendermint" }
tendermint-light-client = { version = "0.18.1", path = "../../light-client", features = ["unstable"] }
tendermint-rpc = { version = "0.18.1", path = "../../rpc", features = [ "http-client", "websocket-client" ] }
tokio = { version = "1.0", features = [ "rt-multi-thread", "macros" ] }
tracing = "0.1"
tracing-subscriber = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion tools/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.18.0"
version = "0.18.1"
authors = ["Thane Thomson <thane@informal.systems>"]
edition = "2018"
license = "Apache-2.0"
Expand Down

0 comments on commit a7baee9

Please sign in to comment.