Skip to content

Commit

Permalink
chore: version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mersinvald committed Jan 12, 2024
1 parent fc9e771 commit df2afd8
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
<a name="v0.5.0"></a>
### 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

<a name="v0.4.0"></a>
### v0.4.0 (2023-12-13)
### v0.4.0 (2023-12-13) YANKED

#### Breaking Changes

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.4.0"
version = "0.5.0"
authors = ["Mike Lubinets <[email protected]>", "Frank Rehberger <[email protected]>"]
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.4.0"
version = "0.5.0"
authors = ["Mike Lubinets <[email protected]>"]
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.4.0"
version = "0.5.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.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
//!
Expand Down Expand Up @@ -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
//!
Expand All @@ -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;

Expand Down

0 comments on commit df2afd8

Please sign in to comment.