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 v2.0.0-beta.0 #464

Merged
merged 1 commit into from
Jan 8, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "bincode"
version = "2.0.0-alpha.2" # remember to update html_root_url and bincode_derive
version = "2.0.0-beta.0" # remember to update html_root_url and bincode_derive
authors = ["Ty Overby <[email protected]>", "Zoey Riordan <[email protected]>", "Victor Koenders <[email protected]>"]
exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"]

Expand Down Expand Up @@ -35,7 +35,7 @@ derive = ["bincode_derive"]
serde = ["std", "serde_incl", "serde_incl/std"]

[dependencies]
bincode_derive = { path = "derive", version = "2.0.0-alpha.2", optional = true }
bincode_derive = { path = "derive", version = "2.0.0-beta.0", optional = true }
serde_incl = { package = "serde", version = "1.0.130", optional = true }

# Used for tests
Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bincode_derive"
version = "2.0.0-alpha.2" # remember to update bincode
version = "2.0.0-beta.0" # remember to update bincode
authors = ["Zoey Riordan <[email protected]>", "Victor Koenders <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
//! assert_eq!(decoded, input);
//! ```

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

Expand Down