summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Milligan <tom.milligan@uipath.com>2023-11-16 01:04:35 +0100
committerGitHub <noreply@github.com>2023-11-16 01:04:35 +0100
commitdc219f755d63306ed0b02502925753c2411825c3 (patch)
treeff3c36b72d2a60478c30bbd6b0b08f7451ce8281
parentc3207e4d16e1f44ec88baaf0730aae89ef9db8f1 (diff)
parenta2524f890ba261f17830cb4feeaf0dd98feccd25 (diff)
Merge pull request #155 from tommilligan/prep-1.14.0v1.14.0
chore: prep v0.14.0 release
-rw-r--r--CHANGELOG.md19
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
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"