diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-21 20:16:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-22 02:16:00 +0200 |
commit | 32a579d4189d47af618ea958e9a6fbe1ddb81f4e (patch) | |
tree | 7b24dec5c523e778ceae1cf101d37299bc179b75 | |
parent | 777e7eaa81ae2477852596976be6b8b360742e2e (diff) |
fix(fmt/markdown): metadata header sometimes missing trailing blank line (#25141)
* https://github.com/dprint/dprint-plugin-markdown/pull/119
-rw-r--r-- | .dprint.json | 2 | ||||
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.dprint.json b/.dprint.json index 6ee255d53..60bf51ecc 100644 --- a/.dprint.json +++ b/.dprint.json @@ -67,7 +67,7 @@ "plugins": [ "https://plugins.dprint.dev/typescript-0.91.6.wasm", "https://plugins.dprint.dev/json-0.19.3.wasm", - "https://plugins.dprint.dev/markdown-0.17.5.wasm", + "https://plugins.dprint.dev/markdown-0.17.6.wasm", "https://plugins.dprint.dev/toml-0.6.2.wasm", "https://plugins.dprint.dev/exec-0.5.0.json@8d9972eee71fa1590e04873540421f3eda7674d0f1aae3d7c788615e7b7413d0", "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.4.0.wasm" diff --git a/Cargo.lock b/Cargo.lock index 333037496..d0a5c7b11 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2483,9 +2483,9 @@ dependencies = [ [[package]] name = "dprint-plugin-markdown" -version = "0.17.5" +version = "0.17.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f1d74e1b3481450e956c35a68e0a5e795796adb13e100d19b6971b9cb531824" +checksum = "6ef42762177b1a74b52b98fe946cb88fa4a01f149b56208de72b43d2be0a54c6" dependencies = [ "anyhow", "dprint-core", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d0dbde7dc..847ffb500 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -102,7 +102,7 @@ dissimilar = "=1.0.4" dotenvy = "0.15.7" dprint-plugin-json = "=0.19.3" dprint-plugin-jupyter = "=0.1.3" -dprint-plugin-markdown = "=0.17.5" +dprint-plugin-markdown = "=0.17.6" dprint-plugin-typescript = "=0.91.6" env_logger = "=0.10.0" fancy-regex = "=0.10.0" |