From d3b971ccd90df35d16069753d52289c0c85014e4 Mon Sep 17 00:00:00 2001 From: Dan Burkert Date: Sun, 28 Jan 2018 17:57:43 -0800 Subject: [PATCH] v0.3.0 --- Cargo.toml | 4 ++-- prost-build/Cargo.toml | 6 +++--- prost-build/src/lib.rs | 2 +- prost-derive/Cargo.toml | 2 +- prost-derive/src/lib.rs | 2 +- prost-types/Cargo.toml | 6 +++--- prost-types/src/lib.rs | 2 +- src/lib.rs | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d28628537..9f6825778 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "prost" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.2.3" +version = "0.3.0" authors = ["Dan Burkert "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" @@ -38,5 +38,5 @@ bytes = "0.4" [dev-dependencies] env_logger = "0.5" log = "0.4" -prost-derive = { version = "0.2", path = "prost-derive" } +prost-derive = { version = "0.3.0", path = "prost-derive" } quickcheck = "0.6" diff --git a/prost-build/Cargo.toml b/prost-build/Cargo.toml index 38ec31434..59a06e07e 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.2.3" +version = "0.3.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 = "0.4" -prost = { version = "0.2", path = ".." } -prost-types = { version = "0.2", path = "../prost-types" } +prost = { version = "0.3.0", path = ".." } +prost-types = { version = "0.3.0", path = "../prost-types" } tempdir = "0.3" [build-dependencies] diff --git a/prost-build/src/lib.rs b/prost-build/src/lib.rs index 26549877d..f7cef9812 100644 --- a/prost-build/src/lib.rs +++ b/prost-build/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost-build/0.2.3")] +#![doc(html_root_url = "https://docs.rs/prost-build/0.3.0")] //! `prost-build` compiles `.proto` files into Rust. //! diff --git a/prost-derive/Cargo.toml b/prost-derive/Cargo.toml index 1293917e1..1bfea8b00 100644 --- a/prost-derive/Cargo.toml +++ b/prost-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "prost-derive" # NB: When modifying, also modify html_root_url in lib.rs -version = "0.2.3" +version = "0.3.0" authors = ["Dan Burkert "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" diff --git a/prost-derive/src/lib.rs b/prost-derive/src/lib.rs index 11684dd03..a79008520 100644 --- a/prost-derive/src/lib.rs +++ b/prost-derive/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost-derive/0.2.3")] +#![doc(html_root_url = "https://docs.rs/prost-derive/0.3.0")] // The `quote!` macro requires deep recursion. #![recursion_limit = "4096"] diff --git a/prost-types/Cargo.toml b/prost-types/Cargo.toml index 1a2daf388..9078c5a83 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.2.3" +version = "0.3.0" authors = ["Dan Burkert "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" @@ -15,5 +15,5 @@ test = false [dependencies] bytes = "0.4" -prost = { version = "0.2", path = ".." } -prost-derive = { version = "0.2", path = "../prost-derive" } +prost = { version = "0.3.0", path = ".." } +prost-derive = { version = "0.3.0", path = "../prost-derive" } diff --git a/prost-types/src/lib.rs b/prost-types/src/lib.rs index 6d6dee86c..28641807e 100644 --- a/prost-types/src/lib.rs +++ b/prost-types/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost-codegen/0.2.3")] +#![doc(html_root_url = "https://docs.rs/prost-codegen/0.3.0")] //! Protocol Buffers well-known types. //! diff --git a/src/lib.rs b/src/lib.rs index 437b2c0da..a62c5b19f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/prost/0.2.3")] +#![doc(html_root_url = "https://docs.rs/prost/0.3.0")] extern crate bytes;