Skip to content

Commit

Permalink
chore: 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mersinvald committed Oct 8, 2024
1 parent 7d1b1cf commit 42d1267
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="v0.6.0"></a>
### v0.6.0 (2024-01-12)

#### Breaking Changes

* use proc-macro-error2 (PR #52 by [Benjamin Bouvier](https://github.com/bnjbvr))
* updated mermaidjs to 11.1.0 (PR #51 by [Zach](https://github.com/zheylmun))

Note: bundled mermaidjs wasn't updated, will fix in the next minor release

<a name="v0.5.0"></a>
### v0.5.0 (2024-01-12)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aquamarine"
version = "0.5.0"
version = "0.6.0"
authors = ["Mike Lubinets <git@mkl.dev>", "Frank Rehberger <frehberg@gmail.com>"]
description = "A mermaid.js integration for rustdoc"
keywords = ["proc_macro", "docs", "rustdoc", "mermaid", "diagram"]
Expand Down
4 changes: 2 additions & 2 deletions demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aquamarine-demo-crate"
version = "0.5.0"
version = "0.6.0"
authors = ["Mike Lubinets <git@mkl.dev>"]
description = "A demo crate for aquamarine -- the mermaid.js integration for rustdoc"
keywords = ["proc_macro", "docs", "rustdoc", "mermaid", "diagram"]
Expand All @@ -9,5 +9,5 @@ edition = "2018"
license = "MIT"

[dependencies.aquamarine]
version = "0.5.0"
version = "0.6.0"
path = "../"
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.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.6.0/aquamarine_demo_crate/fn.example.html) docs.rs page.
//!
//! ### Dark-mode
//!
Expand Down Expand Up @@ -51,7 +51,7 @@
//! /// ```
//! # fn example() {}
//! ```
//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.5.0/aquamarine_demo_crate/fn.example_with_styling.html)
//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.6.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
//!
Expand All @@ -69,7 +69,7 @@
//! /// include_mmd!("diagram_2.mmd")
//! # fn example() {}
//! ```
//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.5.0/aquamarine_demo_crate/fn.example_load_from_file.html)
//! [Demo on docs.rs](https://docs.rs/aquamarine-demo-crate/0.6.0/aquamarine_demo_crate/fn.example_load_from_file.html)

extern crate proc_macro;

Expand Down

0 comments on commit 42d1267

Please sign in to comment.