diff --git a/Cargo.lock b/Cargo.lock index e2416aa..ac997d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -75,7 +75,7 @@ dependencies = [ [[package]] name = "dprint_plugin_yaml" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "dprint-core", @@ -186,7 +186,7 @@ dependencies = [ [[package]] name = "pretty_yaml" -version = "0.3.0" +version = "0.4.0" dependencies = [ "insta", "rowan", @@ -504,7 +504,7 @@ dependencies = [ [[package]] name = "yaml_parser" -version = "0.2.0" +version = "0.2.1" dependencies = [ "insta", "rowan", diff --git a/README.md b/README.md index be9b3d8..ce8c0da 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ After adding the dprint plugin, update your `dprint.json` and add configuration: // Pretty YAML config comes here }, "plugins": [ - "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.3.0.wasm" + "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.4.0.wasm" ] } ``` diff --git a/dprint_plugin/Cargo.toml b/dprint_plugin/Cargo.toml index a5a1018..3bbc9b8 100644 --- a/dprint_plugin/Cargo.toml +++ b/dprint_plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dprint_plugin_yaml" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Pig Fang "] description = "pretty_yaml as dprint plugin." diff --git a/dprint_plugin/deployment/schema.json b/dprint_plugin/deployment/schema.json index 20b20d3..3c97d41 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/pretty_yaml/v0.3.0/schema.json", + "$id": "https://plugins.dprint.dev/g-plane/pretty_yaml/v0.4.0/schema.json", "title": "Config", "description": "Configuration for dprint-plugin-yaml.", "type": "object", diff --git a/pretty_yaml/Cargo.toml b/pretty_yaml/Cargo.toml index 931a5b2..464f456 100644 --- a/pretty_yaml/Cargo.toml +++ b/pretty_yaml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pretty_yaml" -version = "0.3.0" +version = "0.4.0" edition = "2021" authors = ["Pig Fang "] description = "Semi-tolerant and configurable YAML formatter." diff --git a/yaml_parser/Cargo.toml b/yaml_parser/Cargo.toml index b128a7e..841a159 100644 --- a/yaml_parser/Cargo.toml +++ b/yaml_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaml_parser" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Pig Fang "] description = "Semi-tolerant YAML concrete syntax tree parser."