Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep v0.14.0 release #347

Merged
merged 8 commits into from
Jun 19, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
## Pending
## [0.14.0] (2020-06-19)

TODO

CommitSig:
- Refactored CommitSig into a more Rust-friendly enum. ([#247](https://github.com/informalsystems/tendermint-rs/issues/247))
Expand Down
3 changes: 2 additions & 1 deletion light-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name = "tendermint-light-client"
version = "0.1.0"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
version = "0.1.0"
version = "0.14.0"

For consistency.

authors = ["Romain Ruetschi <romain@informal.systems>"]
edition = "2018"
publish = false

[dependencies]
tendermint = { path = "../tendermint" }
tendermint-rpc = { version = "0.1.0", path = "../rpc" }
tendermint-rpc = { version = "0.14.0", path = "../rpc" }

anomaly = { version = "0.2.0", features = ["serializer"] }
contracts = "0.4.0"
Expand Down
7 changes: 4 additions & 3 deletions light-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[package]
name = "tendermint-light-node"
authors = ["Ethan Buchman <ethan@coinculture.info>", "Ismail Khoffi <Ismail.Khoffi@gmail.com>"]
version = "0.1.0"
version = "0.14.0"
edition = "2018"
publish = false

[dependencies]
abscissa_tokio = "0.5"
async-trait = "0.1"
gumdrop = "0.7"
serde = { version = "1", features = ["serde_derive"] }
tendermint = { version = "0.13.0-dev", path = "../tendermint" }
tendermint-rpc = { version = "0.1.0", path = "../rpc", features = [ "client" ] }
tendermint = { version = "0.14.0", path = "../tendermint" }
tendermint-rpc = { version = "0.14.0", path = "../rpc", features = [ "client" ] }
tokio = { version = "0.2", features = ["full"] }

[dependencies.abscissa_core]
Expand Down
4 changes: 2 additions & 2 deletions rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tendermint-rpc"
version = "0.1.0"
version = "0.14.0"
authors = ["Alexander Simmerl <a.simmerl@gmail.com>"]
edition = "2018"

Expand All @@ -23,7 +23,7 @@ getrandom = "0.1"
serde = { version = "1", features = [ "derive" ] }
serde_bytes = "0.11"
serde_json = "1"
tendermint = { version = "0.13.0", path = "../tendermint" }
tendermint = { version = "0.14.0", path = "../tendermint" }
thiserror = "1"
uuid = { version = "0.8", default-features = false }

Expand Down
5 changes: 3 additions & 2 deletions tendermint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "tendermint"
version = "0.13.0" # Also update `html_root_url` in lib.rs when bumping this
version = "0.14.0" # 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/"
repository = "https://github.com/interchainio/tendermint-rs/tree/master/tendermint"
Expand Down Expand Up @@ -56,5 +57,5 @@ zeroize = { version = "1.1", features = ["zeroize_derive"] }
ripemd160 = "0.9"

[dev-dependencies]
tendermint-rpc = { version = "0.1.0", path = "../rpc", features = [ "client" ] }
tendermint-rpc = { version = "0.14.0", path = "../rpc", features = [ "client" ] }
tokio = { version = "0.2", features = [ "macros" ] }
2 changes: 1 addition & 1 deletion tendermint/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
unused_qualifications
)]
#![forbid(unsafe_code)]
#![doc(html_root_url = "https://docs.rs/tendermint/0.13.0")]
#![doc(html_root_url = "https://docs.rs/tendermint/0.14.0")]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


#[macro_use]
pub mod error;
Expand Down