From 7f8515844dac17b0d95e053b2a04c0ec1d6d2c4a Mon Sep 17 00:00:00 2001 From: DQ Date: Wed, 21 Aug 2024 18:03:21 +0200 Subject: [PATCH] Prepare v0.12.1 release (#66) * [Deps] bump indexmap to v2 * bump version to 0.12.1 --------- Co-authored-by: Domenic Quirl --- Cargo.toml | 2 +- cstree/Cargo.toml | 4 ++-- cstree/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4f9a402..3b7c718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ resolver = "2" [workspace.package] edition = "2021" -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`) +version = "0.12.1" # 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 7af3cc3..56ec836 100644 --- a/cstree/Cargo.toml +++ b/cstree/Cargo.toml @@ -21,11 +21,11 @@ triomphe = { version = "0.1.8", default-features = false, features = ["stable_de sptr = "0.3.2" # Default Interner -indexmap = "1.9" +indexmap = "2.4.0" [dependencies.cstree_derive] path = "../cstree-derive" -version = "0.12.0" # must match the `cstree` version in the virtual workspace manifest +version = "0.12.1" # 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 74d5b78..7b789a6 100644 --- a/cstree/src/lib.rs +++ b/cstree/src/lib.rs @@ -93,7 +93,7 @@ )] #![warn(missing_docs)] // Docs.rs -#![doc(html_root_url = "https://docs.rs/cstree/0.12.0")] +#![doc(html_root_url = "https://docs.rs/cstree/0.12.1")] #![cfg_attr(doc_cfg, feature(doc_cfg))] pub mod getting_started;