From c71d6d000c488a1f8db69a473868f4fae1c6b34a Mon Sep 17 00:00:00 2001 From: dalance Date: Tue, 10 Jan 2023 16:52:49 +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 d2ff84e6..bb33ce13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.11...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.12...Unreleased) - ReleaseDate + +## [v0.1.12](https://github.com/dalance/veryl/compare/v0.1.11...v0.1.12) - 2023-01-10 ## [v0.1.11](https://github.com/dalance/veryl/compare/v0.1.10...v0.1.11) - 2023-01-10 diff --git a/Cargo.lock b/Cargo.lock index f8486d77..9acc91de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1658,7 +1658,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.1.11" +version = "0.1.12" dependencies = [ "clap 4.0.32", "console", @@ -1676,7 +1676,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.1.11" +version = "0.1.12" dependencies = [ "thiserror", "veryl-parser", @@ -1684,7 +1684,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.1.11" +version = "0.1.12" dependencies = [ "serde", "veryl-metadata", @@ -1693,7 +1693,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.1.11" +version = "0.1.12" dependencies = [ "veryl-metadata", "veryl-parser", @@ -1701,7 +1701,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.1.11" +version = "0.1.12" dependencies = [ "dashmap", "glob", @@ -1717,7 +1717,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.1.11" +version = "0.1.12" dependencies = [ "semver", "serde", @@ -1728,7 +1728,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.1.11" +version = "0.1.12" dependencies = [ "bimap", "parol", diff --git a/README.md b/README.md index 3885dd04..35fed6d8 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.11-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.1.12-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 26a69e18..11b347af 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.1.11" +version = "0.1.12" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,4 +14,4 @@ edition = "2021" [dependencies] thiserror = {workspace = true} -veryl-parser = {version = "0.1.11", path = "../parser"} +veryl-parser = {version = "0.1.12", path = "../parser"} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index f8100da3..b24aa8f7 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.1.11" +version = "0.1.12" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,5 +14,5 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-metadata = {version = "0.1.11", path = "../metadata"} -veryl-parser = {version = "0.1.11", path = "../parser"} +veryl-metadata = {version = "0.1.12", path = "../metadata"} +veryl-parser = {version = "0.1.12", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index da0469a5..71b5bea2 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.1.11" +version = "0.1.12" 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.11", path = "../metadata"} -veryl-parser = {version = "0.1.11", path = "../parser"} +veryl-metadata = {version = "0.1.12", path = "../metadata"} +veryl-parser = {version = "0.1.12", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index f2ae32bb..0f16d2ca 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.1.11" +version = "0.1.12" 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.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"} +veryl-analyzer = {version = "0.1.12", path = "../analyzer"} +veryl-formatter = {version = "0.1.12", path = "../formatter"} +veryl-metadata = {version = "0.1.12", path = "../metadata"} +veryl-parser = {version = "0.1.12", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 7d2c4bc2..d61d557a 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.1.11" +version = "0.1.12" 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.11", path = "../parser"} +veryl-parser = {version = "0.1.12", path = "../parser"} diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index c70bbed3..3b777f08 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.1.11" +version = "0.1.12" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 1e768557..8c9ffbf5 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.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"} +veryl-analyzer = {version = "0.1.12", path = "../analyzer"} +veryl-emitter = {version = "0.1.12", path = "../emitter"} +veryl-formatter = {version = "0.1.12", path = "../formatter"} +veryl-metadata = {version = "0.1.12", path = "../metadata"} +veryl-parser = {version = "0.1.12", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 8018f1de..d883c032 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.1.11" +version = "0.1.12" 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.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"} +veryl-analyzer = {version = "0.1.12", path = "../analyzer"} +veryl-emitter = {version = "0.1.12", path = "../emitter"} +veryl-formatter = {version = "0.1.12", path = "../formatter"} +veryl-metadata = {version = "0.1.12", path = "../metadata"} +veryl-parser = {version = "0.1.12", path = "../parser"} walkdir = "2.3.2" diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index dca26d25..38364e74 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.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"} +veryl-analyzer = {version = "0.1.12", path = "../analyzer"} +veryl-emitter = {version = "0.1.12", path = "../emitter"} +veryl-formatter = {version = "0.1.12", path = "../formatter"} +veryl-metadata = {version = "0.1.12", path = "../metadata"} +veryl-parser = {version = "0.1.12", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index 0bb0f9ad..e1b0c162 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.11", + "version": "0.1.12", "publisher": "dalance", "engines": { "vscode": "^1.74.0"