From 7d3f8c9f940b90c690142f658ba7577a0a21f561 Mon Sep 17 00:00:00 2001 From: dalance Date: Thu, 19 Oct 2023 18:28:10 +0900 Subject: [PATCH] chore: Release --- CHANGELOG.md | 4 +++- Cargo.lock | 16 ++++++++-------- README.md | 2 +- crates/analyzer/Cargo.toml | 6 +++--- crates/emitter/Cargo.toml | 8 ++++---- crates/formatter/Cargo.toml | 6 +++--- crates/languageserver/Cargo.toml | 10 +++++----- crates/mdbook/Cargo.toml | 4 ++-- 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 +- 14 files changed, 49 insertions(+), 47 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 300c194c..14e9b292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.5.5...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.5.6...Unreleased) - ReleaseDate + +## [v0.5.6](https://github.com/dalance/veryl/compare/v0.5.5...v0.5.6) - 2023-10-19 ## [v0.5.5](https://github.com/dalance/veryl/compare/v0.5.4...v0.5.5) - 2023-03-05 diff --git a/Cargo.lock b/Cargo.lock index 362dd2a3..285d39ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.5.5" +version = "0.5.6" dependencies = [ "anyhow", "clap", @@ -4191,7 +4191,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.5.5" +version = "0.5.6" dependencies = [ "clap", "console", @@ -4215,7 +4215,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.5.5" +version = "0.5.6" dependencies = [ "Inflector", "bimap", @@ -4230,7 +4230,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.5.5" +version = "0.5.6" dependencies = [ "serde", "strnum_bitwidth", @@ -4241,7 +4241,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.5.5" +version = "0.5.6" dependencies = [ "veryl-metadata", "veryl-parser", @@ -4249,7 +4249,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.5.5" +version = "0.5.6" dependencies = [ "async-channel", "dashmap", @@ -4268,7 +4268,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.5.5" +version = "0.5.6" dependencies = [ "directories", "git-repository", @@ -4290,7 +4290,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.5.5" +version = "0.5.6" dependencies = [ "anyhow", "bimap", diff --git a/README.md b/README.md index c18e6fe7..39fbc574 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![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.5.5-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.5.6-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) Veryl is a modern hardware description language. diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index fb7ce09b..0c4d3e02 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -17,8 +17,8 @@ Inflector = "0.11.4" miette = {workspace = true} strnum_bitwidth = {workspace = true} thiserror = {workspace = true} -veryl-metadata = {version = "0.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} daggy = "0.8.0" bimap = "0.6.3" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index 6f84b4d1..95ea5bf3 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -15,6 +15,6 @@ edition = "2021" [dependencies] serde = {workspace = true} strnum_bitwidth = {workspace = true} -veryl-analyzer = {version = "0.5.5", path = "../analyzer"} -veryl-metadata = {version = "0.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-analyzer = {version = "0.5.6", path = "../analyzer"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 1d470f0d..0c76bd81 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.5.5" +version = "0.5.6" 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.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 87469171..cd6c234e 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,7 +24,7 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {version = "1.33.0", features = ["full"]} tower-lsp = "0.20.0" -veryl-analyzer = {version = "0.5.5", path = "../analyzer"} -veryl-formatter = {version = "0.5.5", path = "../formatter"} -veryl-metadata = {version = "0.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-analyzer = {version = "0.5.6", path = "../analyzer"} +veryl-formatter = {version = "0.5.6", path = "../formatter"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index 7102d8b8..905a26f3 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -21,4 +21,4 @@ pulldown-cmark = "0.9.3" regex = {workspace = true} semver = {workspace = true} serde_json = {workspace = true} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-parser = {version = "0.5.6", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index aeb507a6..1736fd4f 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -26,7 +26,7 @@ thiserror = {workspace = true} toml = {workspace = true} url = {workspace = true} uuid = {version = "1.5", default-features = false, features = ["v5", "serde"]} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-parser = {version = "0.5.6", path = "../parser"} walkdir = "2.4.0" [dev-dependencies] diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 0c1fd25e..2aba2cfd 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 924d1dea..1b8d39ac 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.5.5", path = "../analyzer"} -veryl-emitter = {version = "0.5.5", path = "../emitter"} -veryl-formatter = {version = "0.5.5", path = "../formatter"} -veryl-metadata = {version = "0.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-analyzer = {version = "0.5.6", path = "../analyzer"} +veryl-emitter = {version = "0.5.6", path = "../emitter"} +veryl-formatter = {version = "0.5.6", path = "../formatter"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} [dev-dependencies] criterion = "0.5.1" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 20e00f83..b0862700 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.5.5" +version = "0.5.6" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -36,8 +36,8 @@ serde_json = {workspace = true} similar = {version = "2.3.0", features = ["text", "inline"]} tempfile = {workspace = true} thiserror = {workspace = true} -veryl-analyzer = {version = "0.5.5", path = "../analyzer"} -veryl-emitter = {version = "0.5.5", path = "../emitter"} -veryl-formatter = {version = "0.5.5", path = "../formatter"} -veryl-metadata = {version = "0.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-analyzer = {version = "0.5.6", path = "../analyzer"} +veryl-emitter = {version = "0.5.6", path = "../emitter"} +veryl-formatter = {version = "0.5.6", path = "../formatter"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 14d2d885..c46ce608 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -11,11 +11,11 @@ crate-type = ["cdylib"] [dependencies] miette = {workspace = true} semver = {version = "1.0", features = ["serde"]} -veryl-analyzer = {version = "0.5.5", path = "../analyzer"} -veryl-emitter = {version = "0.5.5", path = "../emitter"} -veryl-formatter = {version = "0.5.5", path = "../formatter"} -veryl-metadata = {version = "0.5.5", path = "../metadata"} -veryl-parser = {version = "0.5.5", path = "../parser"} +veryl-analyzer = {version = "0.5.6", path = "../analyzer"} +veryl-emitter = {version = "0.5.6", path = "../emitter"} +veryl-formatter = {version = "0.5.6", path = "../formatter"} +veryl-metadata = {version = "0.5.6", path = "../metadata"} +veryl-parser = {version = "0.5.6", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index ddff89be..3d33e00a 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.5.5", + "version": "0.5.6", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {