From 06d64fab61adfed371062700a9b413418ed3763f Mon Sep 17 00:00:00 2001 From: Ismail Khoffi Date: Sun, 19 Jan 2020 18:11:24 +0100 Subject: [PATCH] bump version to 0.5 because of `bytes` version, really fix broken mail link (#25) --- Cargo.toml | 6 +++--- prost-amino-derive/Cargo.toml | 2 +- prost-build/Cargo.toml | 6 +++--- prost-types/Cargo.toml | 6 +++--- src/lib.rs | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b8fba8..ffedce3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "prost-amino" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.4.1" -authors = ["Dan Burkert ", "zaki ", "Ismail Khoffi ", "zaki ", "Ismail Khoffi "] license = "Apache-2.0" repository = "https://github.com/tendermint/amino_rs" documentation = "https://docs.rs/prost" @@ -34,5 +34,5 @@ bytes = "0.5" [dev-dependencies] env_logger = { version = "0.5", default-features = false } log = "0.4" -prost-amino-derive = { version = "0.4.1", path = "prost-amino-derive" } +prost-amino-derive = { version = "0.5.0", path = "prost-amino-derive" } quickcheck = "0.6" diff --git a/prost-amino-derive/Cargo.toml b/prost-amino-derive/Cargo.toml index b173281..b9cac92 100644 --- a/prost-amino-derive/Cargo.toml +++ b/prost-amino-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "prost-amino-derive" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.4.1" +version = "0.5.0" authors = ["Dan Burkert ", "Ismail Khoffi "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index a71e83c..ce406ad 100644 --- a/prost-build/Cargo.toml +++ b/prost-build/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "prost-build" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.4.0" +version = "0.5.0" authors = ["Dan Burkert "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" @@ -17,8 +17,8 @@ itertools = "0.7" log = "0.4" multimap = { version = "0.4", default-features = false } petgraph = { version = "0.4", default-features = false } -prost-amino = { version = "0.4.0", path = ".." } -prost-types = { version = "0.4.0", path = "../prost-types" } +prost-amino = { version = "0.5.0", path = ".." } +prost-types = { version = "0.5.0", path = "../prost-types" } tempdir = "0.3" [build-dependencies] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index db35d81..faaae0a 100644 --- a/prost-types/Cargo.toml +++ b/prost-types/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "prost-types" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.4.0" +version = "0.5.0" authors = ["Dan Burkert "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" @@ -15,5 +15,5 @@ test = false [dependencies] bytes = "0.5" -prost-amino = { version = "0.4.0", path = ".." } -prost-amino-derive = { version = "0.4.0", path = "../prost-amino-derive" } +prost-amino = { version = "0.5.0", path = ".." } +prost-amino-derive = { version = "0.5.0", path = "../prost-amino-derive" } diff --git a/src/lib.rs b/src/lib.rs index 161eb9d..908a3f0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost_amino/0.4.1")] +#![doc(html_root_url = "https://docs.rs/prost_amino/0.5.0")] pub extern crate bytes;