From df2afd82731aabc0835237e1e57b48d09f986df7 Mon Sep 17 00:00:00 2001 From: Mike Lubinets Date: Fri, 12 Jan 2024 15:28:26 +0400 Subject: [PATCH] chore: version 0.5.0 --- CHANGELOG.md | 11 ++++++++++- Cargo.toml | 2 +- demo/Cargo.toml | 4 ++-- src/lib.rs | 6 +++--- 4 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d046525..b4a6951 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ + +### v0.5.0 (2024-01-12) + +#### Breaking Changes + +* include_mmd! now always uses CARGO_MANIFEST_DIR as root (PR #47 by [Rjected](https://github.com/Rjected)) + +#### Miscellaneous + -### v0.4.0 (2023-12-13) +### v0.4.0 (2023-12-13) YANKED #### Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index 0c57281..6baa1bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquamarine" -version = "0.4.0" +version = "0.5.0" authors = ["Mike Lubinets ", "Frank Rehberger "] 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 a02e3f7..33e4592 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquamarine-demo-crate" -version = "0.4.0" +version = "0.5.0" 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.4.0" +version = "0.5.0" path = "../" diff --git a/src/lib.rs b/src/lib.rs index b59d539..5c81d85 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.4.0/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.5.0/aquamarine_demo_crate/fn.example.html) docs.rs page. //! //! ### Dark-mode //! @@ -51,7 +51,7 @@ //! /// ``` //! # fn example() {} //! ``` -//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.4.0/aquamarine_demo_crate/fn.example_with_styling.html) +//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.5.0/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 //! @@ -69,7 +69,7 @@ //! /// include_mmd!("diagram_2.mmd") //! # fn example() {} //! ``` -//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.4.0/aquamarine_demo_crate/fn.example_load_from_file.html) +//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.5.0/aquamarine_demo_crate/fn.example_load_from_file.html) extern crate proc_macro;