From 70b93783f47e1ff6f6b91c724a4e6ccb890f97bd Mon Sep 17 00:00:00 2001 From: dalance Date: Fri, 23 Dec 2022 18:33:26 +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 ++++++------ 11 files changed, 38 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 602ea41c..64cc67c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log -## [Unreleased](https://github.com/dalance/procs/compare/v0.1.1...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.1.2...Unreleased) - ReleaseDate + +## [v0.1.2](https://github.com/dalance/procs/compare/v0.1.1...v0.1.2) - 2022-12-23 ## [v0.1.1](https://github.com/dalance/procs/compare/v0.1.0...v0.1.1) - 2022-12-23 diff --git a/Cargo.lock b/Cargo.lock index bc54d8f5..553eba02 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1647,7 +1647,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.1.1" +version = "0.1.2" dependencies = [ "clap 4.0.32", "console", @@ -1665,7 +1665,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.1.1" +version = "0.1.2" dependencies = [ "thiserror", "veryl-parser", @@ -1673,7 +1673,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.1.1" +version = "0.1.2" dependencies = [ "serde", "veryl-metadata", @@ -1682,7 +1682,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.1.1" +version = "0.1.2" dependencies = [ "veryl-metadata", "veryl-parser", @@ -1690,7 +1690,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.1.1" +version = "0.1.2" dependencies = [ "dashmap", "ropey", @@ -1704,7 +1704,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.1.1" +version = "0.1.2" dependencies = [ "semver", "serde", @@ -1715,7 +1715,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.1.1" +version = "0.1.2" dependencies = [ "parol", "parol_runtime", diff --git a/README.md b/README.md index 4fca17db..55f5b57a 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.1-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.1.2-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) ## Documentation quick links diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index e4c4bba2..3b80df18 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.1.1" +version = "0.1.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,4 +14,4 @@ edition = "2021" [dependencies] thiserror = {workspace = true} -veryl-parser = {version = "0.1.1", path = "../parser"} +veryl-parser = {version = "0.1.2", path = "../parser"} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index e7e78687..c3058783 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.1.1" +version = "0.1.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,5 +14,5 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-metadata = {version = "0.1.1", path = "../metadata"} -veryl-parser = {version = "0.1.1", path = "../parser"} +veryl-metadata = {version = "0.1.2", path = "../metadata"} +veryl-parser = {version = "0.1.2", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index f7b1558d..0c5db9e7 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.1.1" +version = "0.1.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.1.1", path = "../metadata"} -veryl-parser = {version = "0.1.1", path = "../parser"} +veryl-metadata = {version = "0.1.2", path = "../metadata"} +veryl-parser = {version = "0.1.2", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index fecb4885..ef3f25e1 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.1.1" +version = "0.1.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -17,7 +17,7 @@ dashmap = "5.4.0" ropey = "1.5.0" tokio = {version = "1.23.0", features = ["full"]} tower-lsp = "0.17.0" -veryl-analyzer = {version = "0.1.1", path = "../analyzer"} -veryl-formatter = {version = "0.1.1", path = "../formatter"} -veryl-metadata = {version = "0.1.1", path = "../metadata"} -veryl-parser = {version = "0.1.1", path = "../parser"} +veryl-analyzer = {version = "0.1.2", path = "../analyzer"} +veryl-formatter = {version = "0.1.2", path = "../formatter"} +veryl-metadata = {version = "0.1.2", path = "../metadata"} +veryl-parser = {version = "0.1.2", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 87f60216..8e4fbab3 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.1.1" +version = "0.1.2" 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.1", path = "../parser"} +veryl-parser = {version = "0.1.2", path = "../parser"} diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index af3a53ad..3cd3f959 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.1.1" +version = "0.1.2" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 1f84dd27..7699cca1 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.1", path = "../analyzer"} -veryl-emitter = {version = "0.1.1", path = "../emitter"} -veryl-formatter = {version = "0.1.1", path = "../formatter"} -veryl-metadata = {version = "0.1.1", path = "../metadata"} -veryl-parser = {version = "0.1.1", path = "../parser"} +veryl-analyzer = {version = "0.1.2", path = "../analyzer"} +veryl-emitter = {version = "0.1.2", path = "../emitter"} +veryl-formatter = {version = "0.1.2", path = "../formatter"} +veryl-metadata = {version = "0.1.2", path = "../metadata"} +veryl-parser = {version = "0.1.2", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 419c2277..e8fe7556 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.1.1" +version = "0.1.2" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -28,9 +28,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.1", path = "../analyzer"} -veryl-emitter = {version = "0.1.1", path = "../emitter"} -veryl-formatter = {version = "0.1.1", path = "../formatter"} -veryl-metadata = {version = "0.1.1", path = "../metadata"} -veryl-parser = {version = "0.1.1", path = "../parser"} +veryl-analyzer = {version = "0.1.2", path = "../analyzer"} +veryl-emitter = {version = "0.1.2", path = "../emitter"} +veryl-formatter = {version = "0.1.2", path = "../formatter"} +veryl-metadata = {version = "0.1.2", path = "../metadata"} +veryl-parser = {version = "0.1.2", path = "../parser"} walkdir = "2.3.2"