From 6f029a551bdc3041063ea562080b2ab05700d818 Mon Sep 17 00:00:00 2001 From: dalance Date: Mon, 4 Mar 2024 23:28:01 +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 ++++++------ support/vscode/package.json | 2 +- 13 files changed, 44 insertions(+), 42 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20a54c09..b8a8f917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.7.0...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.7.1...Unreleased) - ReleaseDate + +## [v0.7.1](https://github.com/veryl-lang/veryl/compare/v0.7.0...v0.7.1) - 2024-03-04 ## [v0.7.0](https://github.com/veryl-lang/veryl/compare/v0.6.0...v0.7.0) - 2024-03-01 diff --git a/Cargo.lock b/Cargo.lock index a7a28215..5e2efecf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2422,7 +2422,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "clap", @@ -4334,7 +4334,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.7.0" +version = "0.7.1" dependencies = [ "clap", "console", @@ -4358,7 +4358,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.7.0" +version = "0.7.1" dependencies = [ "Inflector", "bimap", @@ -4373,7 +4373,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.7.0" +version = "0.7.1" dependencies = [ "serde", "strnum_bitwidth", @@ -4384,7 +4384,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.7.0" +version = "0.7.1" dependencies = [ "veryl-metadata", "veryl-parser", @@ -4392,7 +4392,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.7.0" +version = "0.7.1" dependencies = [ "async-channel", "dashmap", @@ -4411,7 +4411,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.7.0" +version = "0.7.1" dependencies = [ "directories", "fs4", @@ -4434,7 +4434,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.7.0" +version = "0.7.1" dependencies = [ "anyhow", "bimap", diff --git a/README.md b/README.md index 2cd1bada..ab65d4fb 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Actions Status](https://github.com/veryl-lang/veryl/workflows/Regression/badge.svg)](https://github.com/veryl-lang/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.7.0-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.7.1-green.svg)](https://github.com/veryl-lang/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 8d5c984f..d7c814f3 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.7.0" +version = "0.7.1" 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.7.0", path = "../metadata"} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-metadata = {version = "0.7.1", path = "../metadata"} +veryl-parser = {version = "0.7.1", path = "../parser"} daggy = "0.8.0" bimap = "0.6.3" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index 6917e07b..46d5f1d0 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.7.0" +version = "0.7.1" 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.7.0", path = "../analyzer"} -veryl-metadata = {version = "0.7.0", path = "../metadata"} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-analyzer = {version = "0.7.1", path = "../analyzer"} +veryl-metadata = {version = "0.7.1", path = "../metadata"} +veryl-parser = {version = "0.7.1", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 09a6ea2a..21dc1a6c 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.7.0" +version = "0.7.1" 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.7.0", path = "../metadata"} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-metadata = {version = "0.7.1", path = "../metadata"} +veryl-parser = {version = "0.7.1", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index edcacc77..a06a5bf9 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.7.0" +version = "0.7.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,7 +24,7 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {version = "1.36.0", features = ["full"]} tower-lsp = "0.20.0" -veryl-analyzer = {version = "0.7.0", path = "../analyzer"} -veryl-formatter = {version = "0.7.0", path = "../formatter"} -veryl-metadata = {version = "0.7.0", path = "../metadata"} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-analyzer = {version = "0.7.1", path = "../analyzer"} +veryl-formatter = {version = "0.7.1", path = "../formatter"} +veryl-metadata = {version = "0.7.1", path = "../metadata"} +veryl-parser = {version = "0.7.1", path = "../parser"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index 8ae4cd73..e9a90f42 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.7.0" +version = "0.7.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -21,4 +21,4 @@ pulldown-cmark = "0.10.0" regex = {workspace = true} semver = {workspace = true} serde_json = {workspace = true} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-parser = {version = "0.7.1", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index b914c3d1..6f951c40 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.7.0" +version = "0.7.1" 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.7", default-features = false, features = ["v5", "serde"]} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-parser = {version = "0.7.1", path = "../parser"} walkdir = "2.5.0" [target.'cfg(not(target_family = "wasm"))'.dependencies] diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 2a5d57f8..375caa3d 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.7.0" +version = "0.7.1" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index f00f20bc..c3de730f 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.7.0", path = "../analyzer"} -veryl-emitter = {version = "0.7.0", path = "../emitter"} -veryl-formatter = {version = "0.7.0", path = "../formatter"} -veryl-metadata = {version = "0.7.0", path = "../metadata"} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-analyzer = {version = "0.7.1", path = "../analyzer"} +veryl-emitter = {version = "0.7.1", path = "../emitter"} +veryl-formatter = {version = "0.7.1", path = "../formatter"} +veryl-metadata = {version = "0.7.1", path = "../metadata"} +veryl-parser = {version = "0.7.1", path = "../parser"} [dev-dependencies] criterion = "0.5.1" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 937816f4..3b43be1a 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.7.0" +version = "0.7.1" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -36,8 +36,8 @@ serde_json = {workspace = true} similar = {version = "2.4.0", features = ["text", "inline"]} tempfile = {workspace = true} thiserror = {workspace = true} -veryl-analyzer = {version = "0.7.0", path = "../analyzer"} -veryl-emitter = {version = "0.7.0", path = "../emitter"} -veryl-formatter = {version = "0.7.0", path = "../formatter"} -veryl-metadata = {version = "0.7.0", path = "../metadata"} -veryl-parser = {version = "0.7.0", path = "../parser"} +veryl-analyzer = {version = "0.7.1", path = "../analyzer"} +veryl-emitter = {version = "0.7.1", path = "../emitter"} +veryl-formatter = {version = "0.7.1", path = "../formatter"} +veryl-metadata = {version = "0.7.1", path = "../metadata"} +veryl-parser = {version = "0.7.1", path = "../parser"} diff --git a/support/vscode/package.json b/support/vscode/package.json index 584172f4..be9bb4ca 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.7.0", + "version": "0.7.1", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {