Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.0-rc.2 #588

Merged
merged 1 commit into from Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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