Changed bincode version to 2.0.0-alpha.0

This commit is contained in:
Victor Koenders 2021-10-21 13:39:45 +02:00
parent adc47b6895
commit dd7e8e8e43
3 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ members = [
[package]
name = "bincode"
version = "2.0.0-dev" # remember to update html_root_url and bincode_derive
version = "2.0.0-alpha.0" # remember to update html_root_url and bincode_derive
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>", "Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
exclude = ["logo.svg", "examples/*", ".gitignore", ".github/"]
@ -30,7 +30,7 @@ atomic = []
derive = ["bincode_derive"]
[dependencies]
bincode_derive = { path = "derive", version = "2.0.0-dev", optional = true }
bincode_derive = { path = "derive", version = "2.0.0-alpha.0", optional = true }
serde = { version = "1.0.130", optional = true }
# Used for tests

View File

@ -1,6 +1,6 @@
[package]
name = "bincode_derive"
version = "2.0.0-dev" # remember to update bincode
version = "2.0.0-alpha.0" # remember to update bincode
authors = ["Zoey Riordan <zoey@dos.cafe>", "Victor Koenders <bincode@trangar.com>"]
edition = "2018"

View File

@ -21,7 +21,7 @@
//! |derive| Yes |||Enables the `Encode` and `Decode` derive macro|
//! |serde | No ||`serde_decode_from[_with_config]`, `serde_encode_into[_with_config]`|Also enables `_to_vec` when `alloc` is enabled|
#![doc(html_root_url = "https://docs.rs/bincode/2.0.0-dev")]
#![doc(html_root_url = "https://docs.rs/bincode/2.0.0-alpha.0")]
#![crate_name = "bincode"]
#![crate_type = "rlib"]
#![crate_type = "dylib"]