diff --git a/CHANGELOG.md b/CHANGELOG.md index 628dfea..1f97a9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v1.18.0 + +### Changed + +- Add ARIA attributes to generated blocks. Thanks to [@toastal](https://github.com/toastal) for suggesting this feature! ([#195](https://github.com/tommilligan/mdbook-admonish/pull/195)) + - Note: This subtly alters the emitted HTML, and could cause additional styles applied to blocks to break. Native `mdbook-admonish` styles are not affected. + +### Fixed + +- Fixed some valid configurations producing TOML serialization errors. Thanks to [@DianaNites](https://github.com/DianaNites) for reporting this! ([#197](https://github.com/tommilligan/mdbook-admonish/pull/197)) + ## v1.17.1 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index b786298..77a236f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -967,7 +967,7 @@ dependencies = [ [[package]] name = "mdbook-admonish" -version = "1.17.1" +version = "1.18.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 5c9b8a4..4d2c226 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-admonish" -version = "1.17.1" +version = "1.18.0" edition = "2021" rust-version = "1.74.0"