Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danburkert committed Mar 10, 2019
1 parent 8b2cabd commit 26adada
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "prost"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.4.0"
version = "0.5.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
Expand Down Expand Up @@ -38,7 +38,7 @@ default = ["prost-derive"]
[dependencies]
byteorder = "1"
bytes = "0.4.7"
prost-derive = { version = "0.4.0", path = "prost-derive", optional = true }
prost-derive = { version = "0.5.0", path = "prost-derive", optional = true }

[dev-dependencies]
criterion = "0.2"
Expand Down
6 changes: 3 additions & 3 deletions prost-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <dan@danburkert.com>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
Expand All @@ -17,8 +17,8 @@ itertools = "0.8"
log = "0.4"
multimap = { version = "0.4", default-features = false }
petgraph = { version = "0.4", default-features = false }
prost = { version = "0.4.0", path = ".." }
prost-types = { version = "0.4.0", path = "../prost-types" }
prost = { version = "0.5.0", path = ".." }
prost-types = { version = "0.5.0", path = "../prost-types" }
tempfile = "3"

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion prost-build/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-build/0.4.0")]
#![doc(html_root_url = "https://docs.rs/prost-build/0.5.0")]

//! `prost-build` compiles `.proto` files into Rust.
//!
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "prost-derive"
# NB: When modifying, also modify html_root_url in lib.rs
version = "0.4.0"
version = "0.5.0"
authors = ["Dan Burkert <dan@danburkert.com>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
Expand Down
2 changes: 1 addition & 1 deletion prost-derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-derive/0.4.0")]
#![doc(html_root_url = "https://docs.rs/prost-derive/0.5.0")]
// The `quote!` macro requires deep recursion.
#![recursion_limit = "4096"]

Expand Down
4 changes: 2 additions & 2 deletions prost-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <dan@danburkert.com>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
Expand All @@ -16,4 +16,4 @@ test = false

[dependencies]
bytes = "0.4.7"
prost = { version = "0.4.0", path = ".." }
prost = { version = "0.5.0", path = ".." }
2 changes: 1 addition & 1 deletion prost-types/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost-codegen/0.4.0")]
#![doc(html_root_url = "https://docs.rs/prost-codegen/0.5.0")]

//! Protocol Buffers well-known types.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/prost/0.4.0")]
#![doc(html_root_url = "https://docs.rs/prost/0.5.0")]

mod error;
mod message;
Expand Down

0 comments on commit 26adada

Please sign in to comment.