Skip to content

Commit 444cc16

Browse files
committed
chore: v0.1.0
1 parent 002d818 commit 444cc16

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ After adding the dprint plugin, update your `dprint.json` and add configuration:
2525
// Pretty YAML config comes here
2626
},
2727
"plugins": [
28-
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.0.0.wasm"
28+
"https://plugins.dprint.dev/g-plane/pretty_yaml-v0.1.0.wasm"
2929
]
3030
}
3131
```

dprint_plugin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dprint_plugin_yaml"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Pig Fang <[email protected]>"]
66
description = "pretty_yaml as dprint plugin."

dprint_plugin/deployment/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://plugins.dprint.dev/g-plane/pretty_yaml/v0.0.0/schema.json",
3+
"$id": "https://plugins.dprint.dev/g-plane/pretty_yaml/v0.1.0/schema.json",
44
"title": "Config",
55
"description": "Configuration for dprint-plugin-yaml.",
66
"type": "object",

pretty_yaml/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pretty_yaml"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Pig Fang <[email protected]>"]
66
description = "Semi-tolerant and configurable YAML formatter."
@@ -15,7 +15,7 @@ itertools = "0.12"
1515
rowan = "0.15"
1616
serde = { version = "1.0", features = ["derive"], optional = true }
1717
tiny_pretty = "0.1"
18-
yaml_parser = { version = "0.0", path = "../yaml_parser" }
18+
yaml_parser = { version = "0.1", path = "../yaml_parser" }
1919

2020
[dev-dependencies]
2121
insta = { version = "1.38", features = ["glob"] }

yaml_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yaml_parser"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Pig Fang <[email protected]>"]
66
description = "Semi-tolerant YAML concrete syntax tree parser."

0 commit comments

Comments
 (0)