diff --git a/CHANGELOG.md b/CHANGELOG.md index e84ab882..621803b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.2.1...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.2.2...Unreleased) - ReleaseDate + +## [v0.2.2](https://github.com/dalance/veryl/compare/v0.2.1...v0.2.2) - 2023-01-24 * [Added] attribute arguments check [#90](https://github.com/dalance/veryl/issues/90) * [Added] metadata check [#91](https://github.com/dalance/veryl/issues/91) diff --git a/Cargo.lock b/Cargo.lock index a28d444a..d8078d43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2209,7 +2209,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "clap 4.1.2", @@ -3890,7 +3890,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.2.1" +version = "0.2.2" dependencies = [ "clap 4.1.2", "console", @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.2.1" +version = "0.2.2" dependencies = [ "miette", "thiserror", @@ -3918,7 +3918,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.2.1" +version = "0.2.2" dependencies = [ "serde", "veryl-analyzer", @@ -3928,7 +3928,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.2.1" +version = "0.2.2" dependencies = [ "veryl-metadata", "veryl-parser", @@ -3936,7 +3936,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.2.1" +version = "0.2.2" dependencies = [ "dashmap", "glob", @@ -3953,7 +3953,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.2.1" +version = "0.2.2" dependencies = [ "directories", "git-repository", @@ -3972,7 +3972,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "bimap", diff --git a/README.md b/README.md index e2e1ea4d..d917bcdb 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ If you have any idea, please open [Issue](https://github.com/dalance/veryl/issue [![Actions Status](https://github.com/dalance/veryl/workflows/Regression/badge.svg)](https://github.com/dalance/veryl/actions) [![Crates.io](https://img.shields.io/crates/v/veryl.svg)](https://crates.io/crates/veryl) -[![Changelog](https://img.shields.io/badge/changelog-v0.2.1-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.2.2-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) * [Document](https://dalance.github.io/veryl/book) * [PlayGround](https://dalance.github.io/veryl/playground) diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index 95b4cbd2..b01965d5 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -15,4 +15,4 @@ edition = "2021" [dependencies] miette = {workspace = true} thiserror = {workspace = true} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-parser = {version = "0.2.2", path = "../parser"} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index 79eaa628..bb97e197 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,6 +14,6 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-analyzer = {version = "0.2.1", path = "../analyzer"} -veryl-metadata = {version = "0.2.1", path = "../metadata"} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-analyzer = {version = "0.2.2", path = "../analyzer"} +veryl-metadata = {version = "0.2.2", path = "../metadata"} +veryl-parser = {version = "0.2.2", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index c8860f92..6bf41815 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -13,5 +13,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -veryl-metadata = {version = "0.2.1", path = "../metadata"} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-metadata = {version = "0.2.2", path = "../metadata"} +veryl-parser = {version = "0.2.2", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 12a1302d..5ac130b6 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -20,7 +20,7 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {version = "1.24.2", features = ["full"]} tower-lsp = "0.18.0" -veryl-analyzer = {version = "0.2.1", path = "../analyzer"} -veryl-formatter = {version = "0.2.1", path = "../formatter"} -veryl-metadata = {version = "0.2.1", path = "../metadata"} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-analyzer = {version = "0.2.2", path = "../analyzer"} +veryl-formatter = {version = "0.2.2", path = "../formatter"} +veryl-metadata = {version = "0.2.2", path = "../metadata"} +veryl-parser = {version = "0.2.2", path = "../parser"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index 94d1cb95..40d3e24b 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -21,4 +21,4 @@ pulldown-cmark = "0.9.2" regex = {workspace = true} semver = {workspace = true} serde_json = {workspace = true} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-parser = {version = "0.2.2", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 097b9db1..98420b3a 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,7 +24,7 @@ spdx = "0.10.0" thiserror = {workspace = true} toml = "0.5.11" url = {workspace = true} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-parser = {version = "0.2.2", path = "../parser"} walkdir = "2.3.2" [features] diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index d6674f99..0c6945c2 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index c2083b1f..008accaf 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -6,11 +6,11 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -veryl-analyzer = {version = "0.2.1", path = "../analyzer"} -veryl-emitter = {version = "0.2.1", path = "../emitter"} -veryl-formatter = {version = "0.2.1", path = "../formatter"} -veryl-metadata = {version = "0.2.1", path = "../metadata"} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-analyzer = {version = "0.2.2", path = "../analyzer"} +veryl-emitter = {version = "0.2.2", path = "../emitter"} +veryl-formatter = {version = "0.2.2", path = "../formatter"} +veryl-metadata = {version = "0.2.2", path = "../metadata"} +veryl-parser = {version = "0.2.2", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 534a66ac..4a91660c 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.2.1" +version = "0.2.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -31,8 +31,8 @@ miette = {workspace = true} serde_json = {workspace = true} similar = {version = "2.2.1", features = ["text", "inline"]} thiserror = {workspace = true} -veryl-analyzer = {version = "0.2.1", path = "../analyzer"} -veryl-emitter = {version = "0.2.1", path = "../emitter"} -veryl-formatter = {version = "0.2.1", path = "../formatter"} -veryl-metadata = {version = "0.2.1", path = "../metadata"} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-analyzer = {version = "0.2.2", path = "../analyzer"} +veryl-emitter = {version = "0.2.2", path = "../emitter"} +veryl-formatter = {version = "0.2.2", path = "../formatter"} +veryl-metadata = {version = "0.2.2", path = "../metadata"} +veryl-parser = {version = "0.2.2", path = "../parser"} diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 0b413dce..1a73231a 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -11,11 +11,11 @@ crate-type = ["cdylib"] [dependencies] miette = {workspace = true} semver = {version = "1.0", features = ["serde"]} -veryl-analyzer = {version = "0.2.1", path = "../analyzer"} -veryl-emitter = {version = "0.2.1", path = "../emitter"} -veryl-formatter = {version = "0.2.1", path = "../formatter"} -veryl-metadata = {version = "0.2.1", path = "../metadata"} -veryl-parser = {version = "0.2.1", path = "../parser"} +veryl-analyzer = {version = "0.2.2", path = "../analyzer"} +veryl-emitter = {version = "0.2.2", path = "../emitter"} +veryl-formatter = {version = "0.2.2", path = "../formatter"} +veryl-metadata = {version = "0.2.2", path = "../metadata"} +veryl-parser = {version = "0.2.2", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index a841ac32..25fa4385 100644 --- a/support/vscode/package.json +++ b/support/vscode/package.json @@ -2,7 +2,7 @@ "name": "vscode-veryl", "displayName": "Veryl", "description": "Veryl extension for Visual Studio Code", - "version": "0.2.1", + "version": "0.2.2", "publisher": "dalance", "engines": { "vscode": "^1.74.0"