From 9db03fd44c5b93275f8e5f3b6321e2bafc05f73e Mon Sep 17 00:00:00 2001 From: Juniper Tyree <50025784+juntyr@users.noreply.github.com> Date: Sat, 9 Mar 2024 08:46:06 +0200 Subject: [PATCH] Prepare v0.9.0-alpha.0 version (#528) --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 34401e276..25cd73797 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 cb50da52a..36414b1fd 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;