From 5dfb6c22ba91a738b681d614202e264259e877f0 Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Sun, 25 Aug 2024 18:24:20 +0800 Subject: [PATCH] chore: v0.5.0 --- Cargo.lock | 6 +++--- README.md | 2 +- dprint_plugin/Cargo.toml | 2 +- dprint_plugin/deployment/schema.json | 2 +- pretty_yaml/Cargo.toml | 2 +- yaml_parser/Cargo.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d74e76a..c44e706 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "dprint_plugin_yaml" -version = "0.4.0" +version = "0.5.0" dependencies = [ "anyhow", "dprint-core", @@ -161,7 +161,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "pretty_yaml" -version = "0.4.0" +version = "0.5.0" dependencies = [ "insta", "rowan", @@ -482,7 +482,7 @@ dependencies = [ [[package]] name = "yaml_parser" -version = "0.2.1" +version = "0.2.2" dependencies = [ "insta", "rowan", diff --git a/README.md b/README.md index 2181af4..eb01fcc 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.4.0.wasm" + "https://plugins.dprint.dev/g-plane/pretty_yaml-v0.5.0.wasm" ] } ``` diff --git a/dprint_plugin/Cargo.toml b/dprint_plugin/Cargo.toml index 3bbc9b8..22f08cc 100644 --- a/dprint_plugin/Cargo.toml +++ b/dprint_plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dprint_plugin_yaml" -version = "0.4.0" +version = "0.5.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 7c464c7..4a979be 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.4.0/schema.json", + "$id": "https://plugins.dprint.dev/g-plane/pretty_yaml/v0.5.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 464f456..53fdabb 100644 --- a/pretty_yaml/Cargo.toml +++ b/pretty_yaml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pretty_yaml" -version = "0.4.0" +version = "0.5.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 841a159..02556e6 100644 --- a/yaml_parser/Cargo.toml +++ b/yaml_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yaml_parser" -version = "0.2.1" +version = "0.2.2" edition = "2021" authors = ["Pig Fang "] description = "Semi-tolerant YAML concrete syntax tree parser."