Skip to content

Commit

Permalink
Release 2.0.0-rc.2 (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorKoenders committed Oct 4, 2022
1 parent 2f05552 commit 6c219e9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -3,7 +3,7 @@ members = ["derive", "compatibility"]

[package]
name = "bincode"
version = "2.0.0-rc.1" # remember to update html_root_url and bincode_derive
version = "2.0.0-rc.2" # remember to update html_root_url and bincode_derive
authors = [
"Ty Overby <ty@pre-alpha.com>",
"Zoey Riordan <zoey@dos.cafe>",
Expand Down Expand Up @@ -31,7 +31,7 @@ alloc = ["serde?/alloc"]
derive = ["bincode_derive"]

[dependencies]
bincode_derive = { path = "derive", version = "2.0.0-rc.1", optional = true }
bincode_derive = { path = "derive", version = "2.0.0-rc.2", optional = true }
serde = { version = "1.0", default-features = false, optional = true }

# Used for tests
Expand Down
9 changes: 6 additions & 3 deletions derive/Cargo.toml
@@ -1,7 +1,10 @@
[package]
name = "bincode_derive"
version = "2.0.0-rc.1" # remember to update bincode
authors = ["Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
version = "2.0.0-rc.2" # remember to update bincode
authors = [
"Zoey Riordan <zoey@dos.cafe>",
"Victor Koenders <bincode@trangar.com>",
]
edition = "2021"

repository = "https://github.com/bincode-org/bincode"
Expand All @@ -16,4 +19,4 @@ description = "Implementation of #[derive(Encode, Decode)] for bincode"
proc-macro = true

[dependencies]
virtue = "0.0.8"
virtue = "0.0.8"
6 changes: 3 additions & 3 deletions fuzz/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -71,7 +71,7 @@
//! [`net::TcpStream`]: std::net::TcpStream
//!

#![doc(html_root_url = "https://docs.rs/bincode/2.0.0-rc.1")]
#![doc(html_root_url = "https://docs.rs/bincode/2.0.0-rc.2")]
#![crate_name = "bincode"]
#![crate_type = "rlib"]

Expand Down

0 comments on commit 6c219e9

Please sign in to comment.