summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Milligan <tom.milligan@uipath.com>2023-07-23 19:46:47 +0100
committerTom Milligan <tom.milligan@uipath.com>2023-07-23 19:47:37 +0100
commitf3d49b93dec7fc0ad4b104ec4a7f962044798f50 (patch)
tree3153676de613a3b868be1db695b9e2650a31ed96
parent92caf95b342037b590cbb89c71e3587e77a43b72 (diff)
chore: prep v1.10.0 release
-rw-r--r--CHANGELOG.md15
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 17 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a1a3bfa..0468ca8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,21 @@
## Unreleased
+## 1.10.0
+
+### Changed
+
+- MSRV (minimum supported rust version) is now 1.66.0 for mdbook v0.4.32 ([#109](https://github.com/tommilligan/mdbook-admonish/pull/109))
+
+### Added
+
+- Support `mdbook test` running doctests inside admonish blocks. Opt-in to this by setting `renderer.test.action_mode = "strip"` ([#109](https://github.com/tommilligan/mdbook-admonish/pull/109))
+- Log a warning when an invalid admonish block is encountered ([#109](https://github.com/tommilligan/mdbook-admonish/pull/109))
+
+### Fixed
+
+- Document all `book.toml` configuration options [in the reference](https://tommilligan.github.io/mdbook-admonish/reference.html), some of which were previously undocumened ([#109](https://github.com/tommilligan/mdbook-admonish/pull/109))
+
## 1.9.0
### Changed
diff --git a/Cargo.lock b/Cargo.lock
index deaec78..e0adfe4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1048,7 +1048,7 @@ dependencies = [
[[package]]
name = "mdbook-admonish"
-version = "1.9.0"
+version = "1.10.0"
dependencies = [
"anyhow",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index 3f02b87..4da554a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook-admonish"
-version = "1.9.0"
+version = "1.10.0"
edition = "2021"
authors = ["Tom Milligan <code@tommilligan.net>"]