From 503ffcffea11cd0235db5ff5a61da41fc3529aae Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Tue, 5 Dec 2023 16:53:43 +0800 Subject: [PATCH] v0.2.4 --- Cargo.lock | 4 ++-- README.md | 2 +- dprint_plugin/Cargo.toml | 2 +- dprint_plugin/deployment/npm/package.json | 2 +- dprint_plugin/deployment/schema.json | 2 +- markup_fmt/Cargo.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3d130bb..d6be2c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "dprint_plugin_markup" -version = "0.2.3" +version = "0.2.4" dependencies = [ "anyhow", "dprint-core", @@ -182,7 +182,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "markup_fmt" -version = "0.2.3" +version = "0.2.4" dependencies = [ "css_dataset", "insta", diff --git a/README.md b/README.md index d44bfa9..a2f5f0c 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ After adding the dprint plugins, update your `dprint.json` and add configuration // ... "plugins": [ // ... other plugins URL - "https://plugins.dprint.dev/g-plane/markup_fmt-v0.2.3.wasm" + "https://plugins.dprint.dev/g-plane/markup_fmt-v0.2.4.wasm" ], "markup": { // <-- the key name here is "markup", not "markup_fmt" // config comes here diff --git a/dprint_plugin/Cargo.toml b/dprint_plugin/Cargo.toml index ef25c94..71321ad 100644 --- a/dprint_plugin/Cargo.toml +++ b/dprint_plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dprint_plugin_markup" -version = "0.2.3" +version = "0.2.4" edition = "2021" authors = ["Pig Fang "] description = "markup_fmt as dprint plugin." diff --git a/dprint_plugin/deployment/npm/package.json b/dprint_plugin/deployment/npm/package.json index fc451a8..4f14c1b 100644 --- a/dprint_plugin/deployment/npm/package.json +++ b/dprint_plugin/deployment/npm/package.json @@ -1,7 +1,7 @@ { "name": "dprint-plugin-markup", "description": "markup_fmt as dprint plugin.", - "version": "0.2.3", + "version": "0.2.4", "author": "Pig Fang ", "repository": "g-plane/markup_fmt", "license": "MIT", diff --git a/dprint_plugin/deployment/schema.json b/dprint_plugin/deployment/schema.json index da0a8cf..f11a996 100644 --- a/dprint_plugin/deployment/schema.json +++ b/dprint_plugin/deployment/schema.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://plugins.dprint.dev/g-plane/markup_fmt/v0.2.3/schema.json", + "$id": "https://plugins.dprint.dev/g-plane/markup_fmt/v0.2.4/schema.json", "title": "Config", "description": "Configuration for dprint-plugin-markup.", "type": "object", diff --git a/markup_fmt/Cargo.toml b/markup_fmt/Cargo.toml index 8b1c804..60949a4 100644 --- a/markup_fmt/Cargo.toml +++ b/markup_fmt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "markup_fmt" -version = "0.2.3" +version = "0.2.4" edition = "2021" authors = ["Pig Fang "] description = "Configurable HTML/Vue/Svelte/Jinja/Twig formatter."