diff --git a/Cargo.toml b/Cargo.toml index 34401e27..25cd7379 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ron" # Memo: update version in src/lib.rs too (doc link) -version = "0.9.0" +version = "0.9.0-alpha.0" license = "MIT OR Apache-2.0" keywords = ["parser", "serde", "serialization"] authors = [ diff --git a/src/lib.rs b/src/lib.rs index cb50da52..36414b1f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ #![deny(unsafe_code)] #![allow(clippy::missing_errors_doc)] // FIXME #![doc = include_str!("../README.md")] -#![doc(html_root_url = "https://docs.rs/ron/0.9.0")] +#![doc(html_root_url = "https://docs.rs/ron/0.9.0-alpha.0")] pub mod de; pub mod ser;