From e926c10ec7db6d5f29983bb9a110db1c35da69b3 Mon Sep 17 00:00:00 2001 From: dalance Date: Tue, 10 Jan 2023 14:16:10 +0900 Subject: [PATCH] chore: Release --- CHANGELOG.md | 4 +++- Cargo.lock | 14 +++++++------- README.md | 2 +- crates/analyzer/Cargo.toml | 4 ++-- crates/emitter/Cargo.toml | 6 +++--- crates/formatter/Cargo.toml | 6 +++--- crates/languageserver/Cargo.toml | 10 +++++----- crates/metadata/Cargo.toml | 4 ++-- crates/parser/Cargo.toml | 2 +- crates/tests/Cargo.toml | 10 +++++----- crates/veryl/Cargo.toml | 12 ++++++------ crates/wasm/Cargo.toml | 10 +++++----- support/vscode/package.json | 2 +- 13 files changed, 44 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7138409..8d983d09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.8...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.9...Unreleased) - ReleaseDate + +## [v0.1.9](https://github.com/dalance/veryl/compare/v0.1.8...v0.1.9) - 2023-01-10 ## [v0.1.8](https://github.com/dalance/veryl/compare/v0.1.7...v0.1.8) - 2023-01-06 diff --git a/Cargo.lock b/Cargo.lock index f293d8ba..f25579fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1658,7 +1658,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.1.8" +version = "0.1.9" dependencies = [ "clap 4.0.32", "console", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.1.8" +version = "0.1.9" dependencies = [ "thiserror", "veryl-parser", @@ -1684,7 +1684,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.1.8" +version = "0.1.9" dependencies = [ "serde", "veryl-metadata", @@ -1693,7 +1693,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.1.8" +version = "0.1.9" dependencies = [ "veryl-metadata", "veryl-parser", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.1.8" +version = "0.1.9" dependencies = [ "dashmap", "glob", @@ -1717,7 +1717,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.1.8" +version = "0.1.9" dependencies = [ "semver", "serde", @@ -1728,7 +1728,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.1.8" +version = "0.1.9" dependencies = [ "bimap", "parol", diff --git a/README.md b/README.md index 348940eb..ef201e96 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.8-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.1.9-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 c0ef212d..766197cd 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.1.8" +version = "0.1.9" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,4 +14,4 @@ edition = "2021" [dependencies] thiserror = {workspace = true} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-parser = {version = "0.1.9", path = "../parser"} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index 13cdde6a..7cb925dd 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.1.8" +version = "0.1.9" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,5 +14,5 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-metadata = {version = "0.1.8", path = "../metadata"} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-metadata = {version = "0.1.9", path = "../metadata"} +veryl-parser = {version = "0.1.9", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 28b14516..51189b7b 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.1.8" +version = "0.1.9" 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.8", path = "../metadata"} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-metadata = {version = "0.1.9", path = "../metadata"} +veryl-parser = {version = "0.1.9", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index e9aa3476..1e9e70e0 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.1.8" +version = "0.1.9" 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.8", path = "../analyzer"} -veryl-formatter = {version = "0.1.8", path = "../formatter"} -veryl-metadata = {version = "0.1.8", path = "../metadata"} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-analyzer = {version = "0.1.9", path = "../analyzer"} +veryl-formatter = {version = "0.1.9", path = "../formatter"} +veryl-metadata = {version = "0.1.9", path = "../metadata"} +veryl-parser = {version = "0.1.9", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 4e3f6668..a75e7b9e 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.1.8" +version = "0.1.9" 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.8", path = "../parser"} +veryl-parser = {version = "0.1.9", path = "../parser"} diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index d3974e46..c855fc8d 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.1.8" +version = "0.1.9" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 25eda0fa..e875a8a4 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.8", path = "../analyzer"} -veryl-emitter = {version = "0.1.8", path = "../emitter"} -veryl-formatter = {version = "0.1.8", path = "../formatter"} -veryl-metadata = {version = "0.1.8", path = "../metadata"} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-analyzer = {version = "0.1.9", path = "../analyzer"} +veryl-emitter = {version = "0.1.9", path = "../emitter"} +veryl-formatter = {version = "0.1.9", path = "../formatter"} +veryl-metadata = {version = "0.1.9", path = "../metadata"} +veryl-parser = {version = "0.1.9", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 25004317..d6ececa9 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.1.8" +version = "0.1.9" 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.8", path = "../analyzer"} -veryl-emitter = {version = "0.1.8", path = "../emitter"} -veryl-formatter = {version = "0.1.8", path = "../formatter"} -veryl-metadata = {version = "0.1.8", path = "../metadata"} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-analyzer = {version = "0.1.9", path = "../analyzer"} +veryl-emitter = {version = "0.1.9", path = "../emitter"} +veryl-formatter = {version = "0.1.9", path = "../formatter"} +veryl-metadata = {version = "0.1.9", path = "../metadata"} +veryl-parser = {version = "0.1.9", path = "../parser"} walkdir = "2.3.2" diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 3a678b47..1d45d411 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.8", path = "../analyzer"} -veryl-emitter = {version = "0.1.8", path = "../emitter"} -veryl-formatter = {version = "0.1.8", path = "../formatter"} -veryl-metadata = {version = "0.1.8", path = "../metadata"} -veryl-parser = {version = "0.1.8", path = "../parser"} +veryl-analyzer = {version = "0.1.9", path = "../analyzer"} +veryl-emitter = {version = "0.1.9", path = "../emitter"} +veryl-formatter = {version = "0.1.9", path = "../formatter"} +veryl-metadata = {version = "0.1.9", path = "../metadata"} +veryl-parser = {version = "0.1.9", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index 7a844c80..c158b2b7 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.0.1", + "version": "0.1.9" "publisher": "dalance", "engines": { "vscode": "^1.74.0"