From 480897b2e8572530a2d09c0a6ed556dbc989bfa2 Mon Sep 17 00:00:00 2001 From: Mike Lubinets Date: Wed, 13 Dec 2023 14:09:23 +0400 Subject: [PATCH] chore: version 0.4.0 --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.toml | 2 +- demo/Cargo.toml | 4 ++-- 3 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a6b2bb..d046525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ + +### v0.4.0 (2023-12-13) + +#### Breaking Changes + +* `path` attribute is no longer supported for importing diagrams from external files + +#### Features + +* `include_mmd!` macro-like syntax for embedding diagrams from files +* multiple diagrams can now be imported from filesystem per documented entity +* imported diagrams can now be placed freely at any place inside the doc comment + +#### Miscellaneous + +* syn bumped to version 2 (PR #42 by [maurer](https://github.com/maurer) + ### v0.3.1 (2023-04-17) diff --git a/Cargo.toml b/Cargo.toml index ea6d032..0c57281 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquamarine" -version = "0.3.3" +version = "0.4.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 68a0072..a02e3f7 100644 --- a/demo/Cargo.toml +++ b/demo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aquamarine-demo-crate" -version = "0.3.3" +version = "0.4.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.3.3" +version = "0.4.0" path = "../"