summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Milligan <tommilligan@users.noreply.github.com>2023-07-23 19:51:53 +0100
committerGitHub <noreply@github.com>2023-07-23 19:51:53 +0100
commite55df3e60bd46eb25cc3799346ce5344c8def654 (patch)
tree3153676de613a3b868be1db695b9e2650a31ed96
parent0742c6c1e85876dad3779ff59ee6a8aac52775b5 (diff)
parentf3d49b93dec7fc0ad4b104ec4a7f962044798f50 (diff)
Merge pull request #110 from tommilligan/prep-1.10.0v1.10.0
chore: prep v1.10.0 release
-rw-r--r--CHANGELOG.md15
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--book/v2.md6
4 files changed, 23 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>"]
diff --git a/book/v2.md b/book/v2.md
new file mode 100644
index 0000000..9493b89
--- /dev/null
+++ b/book/v2.md
@@ -0,0 +1,6 @@
+# Notes for a v2 release
+
+## Default behaviour changes
+
+- `on_failure` default changed from `continue` to `bail`
+- `preprocessor.admonish.renderer.test.render_mode` default changed from `preserve` to `strip`