diff --git a/CHANGELOG.md b/CHANGELOG.md index 9185962a..4efb6462 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.13...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.14...Unreleased) - ReleaseDate + +## [v0.1.14](https://github.com/dalance/veryl/compare/v0.1.13...v0.1.14) - 2023-01-12 ## [v0.1.13](https://github.com/dalance/veryl/compare/v0.1.12...v0.1.13) - 2023-01-10 diff --git a/Cargo.lock b/Cargo.lock index 76e5243b..77e1c196 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1658,7 +1658,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.1.13" +version = "0.1.14" dependencies = [ "clap 4.0.32", "console", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.1.13" +version = "0.1.14" dependencies = [ "thiserror", "veryl-parser", @@ -1684,7 +1684,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.1.13" +version = "0.1.14" dependencies = [ "serde", "veryl-metadata", @@ -1693,7 +1693,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.1.13" +version = "0.1.14" dependencies = [ "veryl-metadata", "veryl-parser", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.1.13" +version = "0.1.14" dependencies = [ "dashmap", "glob", @@ -1717,7 +1717,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.1.13" +version = "0.1.14" dependencies = [ "semver", "serde", @@ -1728,7 +1728,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.1.13" +version = "0.1.14" dependencies = [ "bimap", "parol", diff --git a/README.md b/README.md index 11ed4ef9..fa80f169 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.13-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.1.14-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 12b76f91..77bf83e0 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.1.13" +version = "0.1.14" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,4 +14,4 @@ edition = "2021" [dependencies] thiserror = {workspace = true} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-parser = {version = "0.1.14", path = "../parser"} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index f02ef7d9..cfb4ee2b 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.1.13" +version = "0.1.14" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,5 +14,5 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-metadata = {version = "0.1.13", path = "../metadata"} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-metadata = {version = "0.1.14", path = "../metadata"} +veryl-parser = {version = "0.1.14", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index ad6e7e3a..decfc8aa 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.1.13" +version = "0.1.14" 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.13", path = "../metadata"} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-metadata = {version = "0.1.14", path = "../metadata"} +veryl-parser = {version = "0.1.14", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 152f02f3..5fe3d64b 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.1.13" +version = "0.1.14" 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.13", path = "../analyzer"} -veryl-formatter = {version = "0.1.13", path = "../formatter"} -veryl-metadata = {version = "0.1.13", path = "../metadata"} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-analyzer = {version = "0.1.14", path = "../analyzer"} +veryl-formatter = {version = "0.1.14", path = "../formatter"} +veryl-metadata = {version = "0.1.14", path = "../metadata"} +veryl-parser = {version = "0.1.14", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index b622bb5d..0576d3f3 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.1.13" +version = "0.1.14" 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.13", path = "../parser"} +veryl-parser = {version = "0.1.14", path = "../parser"} diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index a8185470..a3d6a266 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.1.13" +version = "0.1.14" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 3c3bd22e..b98e40d0 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.13", path = "../analyzer"} -veryl-emitter = {version = "0.1.13", path = "../emitter"} -veryl-formatter = {version = "0.1.13", path = "../formatter"} -veryl-metadata = {version = "0.1.13", path = "../metadata"} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-analyzer = {version = "0.1.14", path = "../analyzer"} +veryl-emitter = {version = "0.1.14", path = "../emitter"} +veryl-formatter = {version = "0.1.14", path = "../formatter"} +veryl-metadata = {version = "0.1.14", path = "../metadata"} +veryl-parser = {version = "0.1.14", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 60440709..4c671ea0 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.1.13" +version = "0.1.14" 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.13", path = "../analyzer"} -veryl-emitter = {version = "0.1.13", path = "../emitter"} -veryl-formatter = {version = "0.1.13", path = "../formatter"} -veryl-metadata = {version = "0.1.13", path = "../metadata"} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-analyzer = {version = "0.1.14", path = "../analyzer"} +veryl-emitter = {version = "0.1.14", path = "../emitter"} +veryl-formatter = {version = "0.1.14", path = "../formatter"} +veryl-metadata = {version = "0.1.14", path = "../metadata"} +veryl-parser = {version = "0.1.14", path = "../parser"} walkdir = "2.3.2" diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index bf434582..a61df81b 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.13", path = "../analyzer"} -veryl-emitter = {version = "0.1.13", path = "../emitter"} -veryl-formatter = {version = "0.1.13", path = "../formatter"} -veryl-metadata = {version = "0.1.13", path = "../metadata"} -veryl-parser = {version = "0.1.13", path = "../parser"} +veryl-analyzer = {version = "0.1.14", path = "../analyzer"} +veryl-emitter = {version = "0.1.14", path = "../emitter"} +veryl-formatter = {version = "0.1.14", path = "../formatter"} +veryl-metadata = {version = "0.1.14", path = "../metadata"} +veryl-parser = {version = "0.1.14", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index 634fc716..ed6058a4 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.1.13", + "version": "0.1.14", "publisher": "dalance", "engines": { "vscode": "^1.74.0"