diff --git a/Cargo.lock b/Cargo.lock index 633c878..4e28880 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -70,7 +70,7 @@ dependencies = [ [[package]] name = "dprint_plugin_graphql" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "dprint-core", @@ -172,7 +172,7 @@ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" [[package]] name = "pretty_graphql" -version = "0.1.0" +version = "0.2.0" dependencies = [ "apollo-parser", "insta", diff --git a/README.md b/README.md index ba22687..91d32ec 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ After adding the dprint plugin, update your `dprint.json` and add configuration: // Pretty GraphQL config comes here }, "plugins": [ - "https://plugins.dprint.dev/g-plane/pretty_graphql-v0.1.0.wasm" + "https://plugins.dprint.dev/g-plane/pretty_graphql-v0.2.0.wasm" ] } ``` diff --git a/dprint_plugin/Cargo.toml b/dprint_plugin/Cargo.toml index 2c52a4e..bb9fe8d 100644 --- a/dprint_plugin/Cargo.toml +++ b/dprint_plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dprint_plugin_graphql" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Pig Fang "] description = "pretty_graphql as dprint plugin." diff --git a/dprint_plugin/deployment/schema.json b/dprint_plugin/deployment/schema.json index 0582699..cc40df8 100644 --- a/dprint_plugin/deployment/schema.json +++ b/dprint_plugin/deployment/schema.json @@ -1,6 +1,6 @@ { "$schema": "https://json-schema.org/draft-07/schema#", - "$id": "https://plugins.dprint.dev/g-plane/pretty_graphql/v0.1.0/schema.json", + "$id": "https://plugins.dprint.dev/g-plane/pretty_graphql/v0.2.0/schema.json", "title": "Config", "description": "Configuration for dprint-plugin-graphql.", "type": "object", diff --git a/pretty_graphql/Cargo.toml b/pretty_graphql/Cargo.toml index 0f3f81f..2b69ee8 100644 --- a/pretty_graphql/Cargo.toml +++ b/pretty_graphql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pretty_graphql" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Pig Fang "] description = "GraphQL formatter."