Skip to content

Commit

Permalink
bump version to 0.5 because of bytes version, really fix broken mai…
Browse files Browse the repository at this point in the history
…l link (tendermint#25)
  • Loading branch information
liamsi authored Jan 19, 2020
1 parent 074df24 commit 3ade11f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <dan@danburkert.com>", "zaki <zaki@tendermint.com>", "Ismail Khoffi <ismail.khoffi@gmail.com"]
version = "0.5.0"
authors = ["Dan Burkert <dan@danburkert.com>", "zaki <zaki@tendermint.com>", "Ismail Khoffi <ismail.khoffi@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/tendermint/amino_rs"
documentation = "https://docs.rs/prost"
Expand Down Expand Up @@ -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"
2 changes: 1 addition & 1 deletion prost-amino-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <dan@danburkert.com>", "Ismail Khoffi <Ismail.Khoffi@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/danburkert/prost"
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.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]
Expand Down
6 changes: 3 additions & 3 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 @@ -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" }
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_amino/0.4.1")]
#![doc(html_root_url = "https://docs.rs/prost_amino/0.5.0")]

pub extern crate bytes;

Expand Down

0 comments on commit 3ade11f

Please sign in to comment.