diff --git a/CHANGELOG.md b/CHANGELOG.md index 779bcbe0..d2ff84e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.10...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.11...Unreleased) - ReleaseDate + +## [v0.1.11](https://github.com/dalance/veryl/compare/v0.1.10...v0.1.11) - 2023-01-10 ## [v0.1.10](https://github.com/dalance/veryl/compare/v0.1.9...v0.1.10) - 2023-01-10 diff --git a/Cargo.lock b/Cargo.lock index e33bcf05..f8486d77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1658,7 +1658,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.1.10" +version = "0.1.11" dependencies = [ "clap 4.0.32", "console", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.1.10" +version = "0.1.11" dependencies = [ "thiserror", "veryl-parser", @@ -1684,7 +1684,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.1.10" +version = "0.1.11" dependencies = [ "serde", "veryl-metadata", @@ -1693,7 +1693,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.1.10" +version = "0.1.11" dependencies = [ "veryl-metadata", "veryl-parser", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.1.10" +version = "0.1.11" dependencies = [ "dashmap", "glob", @@ -1717,7 +1717,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.1.10" +version = "0.1.11" dependencies = [ "semver", "serde", @@ -1728,7 +1728,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.1.10" +version = "0.1.11" dependencies = [ "bimap", "parol", diff --git a/README.md b/README.md index f6c5dabe..74f0de9a 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.1.10-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.1.11-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) [PlayGround](https://dalance.github.io/veryl/playground) diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index b8d1cddd..26a69e18 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.1.10" +version = "0.1.11" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,4 +14,4 @@ edition = "2021" [dependencies] thiserror = {workspace = true} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-parser = {version = "0.1.11", path = "../parser"} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index bc4e42ce..f8100da3 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.1.10" +version = "0.1.11" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,5 +14,5 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-metadata = {version = "0.1.10", path = "../metadata"} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-metadata = {version = "0.1.11", path = "../metadata"} +veryl-parser = {version = "0.1.11", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index a754c840..da0469a5 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.1.10" +version = "0.1.11" 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.1.10", path = "../metadata"} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-metadata = {version = "0.1.11", path = "../metadata"} +veryl-parser = {version = "0.1.11", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 9c554f34..f2ae32bb 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.1.10" +version = "0.1.11" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -19,7 +19,7 @@ ropey = "1.5.1" serde_json = "1.0" tokio = {version = "1.24.1", features = ["full"]} tower-lsp = "0.17.0" -veryl-analyzer = {version = "0.1.10", path = "../analyzer"} -veryl-formatter = {version = "0.1.10", path = "../formatter"} -veryl-metadata = {version = "0.1.10", path = "../metadata"} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-analyzer = {version = "0.1.11", path = "../analyzer"} +veryl-formatter = {version = "0.1.11", path = "../formatter"} +veryl-metadata = {version = "0.1.11", path = "../metadata"} +veryl-parser = {version = "0.1.11", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index ccd30b91..7d2c4bc2 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.1.10" +version = "0.1.11" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -17,4 +17,4 @@ semver = {version = "1.0", features = ["serde"]} serde = {workspace = true} thiserror = {workspace = true} toml = "0.5.10" -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-parser = {version = "0.1.11", path = "../parser"} diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 693c6325..c70bbed3 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.1.10" +version = "0.1.11" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 32360804..1e768557 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.1.10", path = "../analyzer"} -veryl-emitter = {version = "0.1.10", path = "../emitter"} -veryl-formatter = {version = "0.1.10", path = "../formatter"} -veryl-metadata = {version = "0.1.10", path = "../metadata"} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-analyzer = {version = "0.1.11", path = "../analyzer"} +veryl-emitter = {version = "0.1.11", path = "../emitter"} +veryl-formatter = {version = "0.1.11", path = "../formatter"} +veryl-metadata = {version = "0.1.11", path = "../metadata"} +veryl-parser = {version = "0.1.11", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index d305bf31..8018f1de 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.1.10" +version = "0.1.11" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -29,9 +29,9 @@ env_logger = "0.10.0" serde_json = "1.0" similar = {version = "2.2.1", features = ["text", "inline"]} thiserror = {workspace = true} -veryl-analyzer = {version = "0.1.10", path = "../analyzer"} -veryl-emitter = {version = "0.1.10", path = "../emitter"} -veryl-formatter = {version = "0.1.10", path = "../formatter"} -veryl-metadata = {version = "0.1.10", path = "../metadata"} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-analyzer = {version = "0.1.11", path = "../analyzer"} +veryl-emitter = {version = "0.1.11", path = "../emitter"} +veryl-formatter = {version = "0.1.11", path = "../formatter"} +veryl-metadata = {version = "0.1.11", path = "../metadata"} +veryl-parser = {version = "0.1.11", path = "../parser"} walkdir = "2.3.2" diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 6a0237fa..dca26d25 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -10,11 +10,11 @@ crate-type = ["cdylib"] [dependencies] semver = {version = "1.0", features = ["serde"]} -veryl-analyzer = {version = "0.1.10", path = "../analyzer"} -veryl-emitter = {version = "0.1.10", path = "../emitter"} -veryl-formatter = {version = "0.1.10", path = "../formatter"} -veryl-metadata = {version = "0.1.10", path = "../metadata"} -veryl-parser = {version = "0.1.10", path = "../parser"} +veryl-analyzer = {version = "0.1.11", path = "../analyzer"} +veryl-emitter = {version = "0.1.11", path = "../emitter"} +veryl-formatter = {version = "0.1.11", path = "../formatter"} +veryl-metadata = {version = "0.1.11", path = "../metadata"} +veryl-parser = {version = "0.1.11", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index c72a312c..8ef818f7 100644 --- a/support/vscode/package.json +++ b/support/vscode/package.json @@ -2,7 +2,7 @@ "name": "vscode-veryl", "displayName": "vscode-veryl", "description": "Veryl extension for Visual Studio Code", - "version": "0.1.10", + "version": "0.1.11", "publisher": "dalance", "engines": { "vscode": "^1.74.0"