summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Milligan <tom.milligan@uipath.com>2023-10-06 15:21:27 +0100
committerGitHub <noreply@github.com>2023-10-06 15:21:27 +0100
commit197d9cd0591c161b0eea6bfc5fbcfa289a8c0ed1 (patch)
tree0a7b0b3ce690e3c74f96d6bb9d999b94bdd71efb
parent1526a5d8145cf3f010d103f1a584ec34bd31df4e (diff)
parent04ff932f1f898d9db5575a9d68920ceb30f7113b (diff)
Merge pull request #140 from tommilligan/prep-1.13.0v1.13.0
chore: prep v0.13.0 release
-rw-r--r--CHANGELOG.md15
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 15 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 78d8814..03bf4b9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,17 +2,28 @@
## Unreleased
+## 1.13.0
+
+### Changed
+
+- Required styles version is now `^3.0.0` (release `1.13.0`). Run `mdbook-admonish install` to update.
+- Internal CSS classnames for directives are now prefixed with `admonish-`, so `warning` is now `admonish-warning`. This avoids a conflict with upstream classnames introduced in `mdbook 0.4.35`. Thanks to [@phoenixr-codes](https://github.com/phoenixr-codes) for the report and fix! ([#139](https://github.com/tommilligan/mdbook-admonish/pull/139))
+
+### Fixed
+
+- Some minor inconsistencies in SCSS (and downstream CSS) styles were fixed by adopting Prettier linting ([#138](https://github.com/tommilligan/mdbook-admonish/pull/138))
+
## 1.12.1
### Fixed
-- Panic when searching for an indent in non-ASCII content. Thanks to [@CoralPink](https://github.com/CoralPink) for the report! ([#128](https://github.com/tommilligan/mdbook-admonish/pull/128)
+- Panic when searching for an indent in non-ASCII content. Thanks to [@CoralPink](https://github.com/CoralPink) for the report! ([#128](https://github.com/tommilligan/mdbook-admonish/pull/128))
## 1.12.0
### Added
-- Admonitions are now supported when indented inside other elements, such as a list. Thanks to [@mattburgess](https://github.com/mattburgess) for the report! ([#124](https://github.com/tommilligan/mdbook-admonish/pull/124)
+- Admonitions are now supported when indented inside other elements, such as a list. Thanks to [@mattburgess](https://github.com/mattburgess) for the report! ([#124](https://github.com/tommilligan/mdbook-admonish/pull/124))
## 1.11.1
diff --git a/Cargo.lock b/Cargo.lock
index dfb20a0..5ed3399 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -952,7 +952,7 @@ dependencies = [
[[package]]
name = "mdbook-admonish"
-version = "1.12.1"
+version = "1.13.0"
dependencies = [
"anyhow",
"clap",
diff --git a/Cargo.toml b/Cargo.toml
index fbda7e7..96873d5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mdbook-admonish"
-version = "1.12.1"
+version = "1.13.0"
edition = "2021"
authors = ["Tom Milligan <code@tommilligan.net>"]