From 4e63822acf36db0bcda3a732dc3f008f7ab02c7a Mon Sep 17 00:00:00 2001 From: Mike Lubinets Date: Wed, 17 Aug 2022 13:51:41 +0400 Subject: [PATCH] chore: version 0.1.12 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- demo/Cargo.toml | 4 ++-- src/lib.rs | 4 ++-- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d124940..602ad5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ + +### v0.1.12 (2022-08-17) + +mermaid.js upgraded to version 9.1.4 + +#### Bug Fixes + +* failing doctest ([680ea555](680ea555)) +* typo in changelog ([75419467](75419467)) + + ## 0.1.11 (2021-05-31) diff --git a/Cargo.toml b/Cargo.toml index 0bed991..e211b11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquamarine" -version = "0.1.11" +version = "0.1.12" authors = ["Mike Lubinets "] description = "A mermaid.js integration for rustdoc" keywords = ["proc_macro", "docs", "rustdoc", "mermaid", "diagram"] diff --git a/demo/Cargo.toml b/demo/Cargo.toml index f09275e..fc40e3b 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquamarine-demo-crate" -version = "0.1.11" +version = "0.1.12" authors = ["Mike Lubinets "] description = "A demo crate for aquamarine -- the mermaid.js integration for rustdoc" keywords = ["proc_macro", "docs", "rustdoc", "mermaid", "diagram"] @@ -9,5 +9,5 @@ edition = "2018" license = "MIT" [dependencies.aquamarine] -version = "0.1.11" +version = "0.1.12" path = "../" diff --git a/src/lib.rs b/src/lib.rs index b8a083c..22ac959 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -22,7 +22,7 @@ //! //! You can even add multiple diagrams! //! -//! To see it in action, go to the [demo crate](https://docs.rs/aquamarine-demo-crate/0.1.11/aquamarine_demo_crate/fn.example.html) docs.rs page. +//! To see it in action, go to the [demo crate](https://docs.rs/aquamarine-demo-crate/0.1.12/aquamarine_demo_crate/fn.example.html) docs.rs page. //! //! ### Dark-mode //! @@ -52,7 +52,7 @@ //! # fn example() {} //! ``` //! -//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.1.11/aquamarine_demo_crate/fn.example_with_styling.html) +//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.1.12/aquamarine_demo_crate/fn.example_with_styling.html) //! //! To learn more, see the [Theming Section](https://mermaid-js.github.io/mermaid/#/theming) of the mermaid.js book