Skip to content

Commit

Permalink
Release 2.0.0-alpha.1 (#435)
Browse files Browse the repository at this point in the history
  • Loading branch information
VictorKoenders committed Nov 9, 2021
1 parent cb16c7f commit a7c8964
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -5,7 +5,7 @@ members = [

[package]
name = "bincode"
version = "2.0.0-alpha.0" # remember to update html_root_url and bincode_derive
version = "2.0.0-alpha.1" # remember to update html_root_url and bincode_derive
authors = ["Ty Overby <ty@pre-alpha.com>", "Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
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.0", optional = true }
bincode_derive = { path = "derive", version = "2.0.0-alpha.1", 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
@@ -1,6 +1,6 @@
[package]
name = "bincode_derive"
version = "2.0.0-alpha.0" # remember to update bincode
version = "2.0.0-alpha.1" # remember to update bincode
authors = ["Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
edition = "2021"

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

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

0 comments on commit a7c8964

Please sign in to comment.