From a2524f890ba261f17830cb4feeaf0dd98feccd25 Mon Sep 17 00:00:00 2001 From: Tom Milligan Date: Thu, 16 Nov 2023 00:02:18 +0000 Subject: [PATCH] chore: prep v0.14.0 release --- CHANGELOG.md | 19 ++++++++++++++++--- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b21ab71..8caaeaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,21 @@ ## Unreleased -- You can now set custom CSS ids for admonishment blocks with the `id` field. -- You can now customize the default CSS id prefix (default is `"admonition-"`). +## 1.14.0 + +### Changed + +- Styles version updated to `3.0.1`. Run `mdbook-admonish install` to update. + +### Added + +- You can now set custom CSS ids for admonition blocks with the `id` field. Thanks to [@Sky9x](https://github.com/Sky9x) for contributing this feature! ([#144](https://github.com/tommilligan/mdbook-admonish/pull/144)) + - You can also now customize the CSS id prefix with the config option `default.css_id_prefix` + +### Fixed + +- Improve rendering of blocks in print/PDF view. Thanks to [@csk111165](https://github.com/csk111165) for the report ([#152](https://github.com/tommilligan/mdbook-admonish/issues/152)) +- Fix the default titles for `tldr` and `faq` directives looking bad. They now render as `TL;DR` and `FAQ` by default. Thanks [@joshka](https://github.com/joshka) for fixing this! ([#154](https://github.com/tommilligan/mdbook-admonish/pull/154)) ## 1.13.1 @@ -89,7 +102,7 @@ It unintentionally increased the MSRV from 1.66.0 ### Changed -- Styles updated to `^2.0.1`. Run `mdbook-admonish install` to update. +- Styles version updated to `2.0.1`. Run `mdbook-admonish install` to update. - MSRV (minimum supported rust version) is now 1.64.0 for clap v4 ([#79](https://github.com/tommilligan/mdbook-admonish/pull/79)) - More verbose error messages for invalid TOML configurations ([#79](https://github.com/tommilligan/mdbook-admonish/pull/79)) diff --git a/Cargo.lock b/Cargo.lock index c3da5c4..e8d2753 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -952,7 +952,7 @@ dependencies = [ [[package]] name = "mdbook-admonish" -version = "1.13.1" +version = "1.14.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 12407da..385b4f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-admonish" -version = "1.13.1" +version = "1.14.0" edition = "2021" rust-version = "1.66.0"