diff --git a/Cargo.toml b/Cargo.toml index 55a7214..f33d154 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.12.0-rc.0" # when updating, also update `#![doc(html_root_url)]` and any inter-crate dependencies (such as `cstree`'s dependency on `cstree-derive`) +version = "0.12.0" # when updating, also update `#![doc(html_root_url)]` and any inter-crate dependencies (such as `cstree`'s dependency on `cstree-derive`) authors = [ "Domenic Quirl ", "Aleksey Kladov ", diff --git a/cstree/Cargo.toml b/cstree/Cargo.toml index d5860da..76166f5 100644 --- a/cstree/Cargo.toml +++ b/cstree/Cargo.toml @@ -25,7 +25,7 @@ indexmap = "1.9" [dependencies.cstree_derive] path = "../cstree-derive" -version = "0.12.0-rc.0" # must match the `cstree` version in the virtual workspace manifest +version = "0.12.0" # must match the `cstree` version in the virtual workspace manifest optional = true [dependencies.lasso] diff --git a/cstree/src/lib.rs b/cstree/src/lib.rs index 51a0fd3..094eddf 100644 --- a/cstree/src/lib.rs +++ b/cstree/src/lib.rs @@ -89,7 +89,7 @@ #![allow(unstable_name_collisions)] // strict provenance - must come after `future_incompatible` to take precedence #![warn(missing_docs)] // Docs.rs -#![doc(html_root_url = "https://docs.rs/cstree/0.12.0-rc.0")] +#![doc(html_root_url = "https://docs.rs/cstree/0.12.0")] #![cfg_attr(doc_cfg, feature(doc_cfg))] pub mod getting_started;