From 1b33607228749b6d44cd0a9706dee05574362c37 Mon Sep 17 00:00:00 2001 From: dalance Date: Fri, 10 May 2024 10:33:18 +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 | 10 +++++----- 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, 47 insertions(+), 45 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e83de1d..40d1271e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.9.0...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.10.0...Unreleased) - ReleaseDate + +## [v0.10.0](https://github.com/veryl-lang/veryl/compare/v0.9.0...v0.10.0) - 2024-05-10 ## [v0.9.0](https://github.com/veryl-lang/veryl/compare/v0.8.2...v0.9.0) - 2024-04-18 diff --git a/Cargo.lock b/Cargo.lock index 222a24e6..f56dfa06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2546,7 +2546,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "clap 4.5.4", @@ -4476,7 +4476,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anstyle", "clap 4.5.4", @@ -4506,7 +4506,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.9.0" +version = "0.10.0" dependencies = [ "Inflector", "bimap", @@ -4522,7 +4522,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.9.0" +version = "0.10.0" dependencies = [ "serde", "strnum_bitwidth", @@ -4533,7 +4533,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.9.0" +version = "0.10.0" dependencies = [ "veryl-metadata", "veryl-parser", @@ -4541,7 +4541,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-channel", "dashmap", @@ -4560,7 +4560,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.9.0" +version = "0.10.0" dependencies = [ "directories", "fs4", @@ -4584,7 +4584,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "bimap", diff --git a/README.md b/README.md index 26c77daf..0ba65ea8 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.9.0-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.10.0-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 cfd375af..91355abd 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.9.0" +version = "0.10.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -18,8 +18,8 @@ itertools = "0.12.1" miette = {workspace = true} strnum_bitwidth = {workspace = true} thiserror = {workspace = true} -veryl-metadata = {version = "0.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} daggy = "0.8.0" bimap = "0.6.3" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index e8515122..ab499d11 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.9.0" +version = "0.10.0" 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.9.0", path = "../analyzer"} -veryl-metadata = {version = "0.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-analyzer = {version = "0.10.0", path = "../analyzer"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 361499e6..3c4e7714 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.9.0" +version = "0.10.0" 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.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index b19356af..3594cb84 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.9.0" +version = "0.10.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,7 +24,7 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {workspace = true} tower-lsp = "0.20.0" -veryl-analyzer = {version = "0.9.0", path = "../analyzer"} -veryl-formatter = {version = "0.9.0", path = "../formatter"} -veryl-metadata = {version = "0.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-analyzer = {version = "0.10.0", path = "../analyzer"} +veryl-formatter = {version = "0.10.0", path = "../formatter"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index e2f3705d..57dae7b4 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.9.0" +version = "0.10.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -23,7 +23,7 @@ semver = {workspace = true} serde_json = {workspace = true} similar = {workspace = true} toml = {workspace = true} -veryl-analyzer = {version = "0.9.0", path = "../analyzer"} -veryl-formatter = {version = "0.9.0", path = "../formatter"} -veryl-metadata = {version = "0.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-analyzer = {version = "0.10.0", path = "../analyzer"} +veryl-formatter = {version = "0.10.0", path = "../formatter"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index cb2fae30..055d617d 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.9.0" +version = "0.10.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -27,7 +27,7 @@ thiserror = {workspace = true} toml = {workspace = true} url = {workspace = true} uuid = {version = "1.8", default-features = false, features = ["v5", "serde"]} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-parser = {version = "0.10.0", 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 1caa090a..f02c8aec 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.9.0" +version = "0.10.0" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 87bf68c0..225ab196 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.9.0", path = "../analyzer"} -veryl-emitter = {version = "0.9.0", path = "../emitter"} -veryl-formatter = {version = "0.9.0", path = "../formatter"} -veryl-metadata = {version = "0.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-analyzer = {version = "0.10.0", path = "../analyzer"} +veryl-emitter = {version = "0.10.0", path = "../emitter"} +veryl-formatter = {version = "0.10.0", path = "../formatter"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} [dev-dependencies] criterion = "0.5.1" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 8f9458e3..1e07e8c6 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.9.0" +version = "0.10.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -44,8 +44,8 @@ tempfile = {workspace = true} thiserror = {workspace = true} tokio = {workspace = true} tokio-util = "0.7.11" -veryl-analyzer = {version = "0.9.0", path = "../analyzer"} -veryl-emitter = {version = "0.9.0", path = "../emitter"} -veryl-formatter = {version = "0.9.0", path = "../formatter"} -veryl-metadata = {version = "0.9.0", path = "../metadata"} -veryl-parser = {version = "0.9.0", path = "../parser"} +veryl-analyzer = {version = "0.10.0", path = "../analyzer"} +veryl-emitter = {version = "0.10.0", path = "../emitter"} +veryl-formatter = {version = "0.10.0", path = "../formatter"} +veryl-metadata = {version = "0.10.0", path = "../metadata"} +veryl-parser = {version = "0.10.0", path = "../parser"} diff --git a/support/vscode/package.json b/support/vscode/package.json index 6a238743..adbae05b 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.9.0", + "version": "0.10.0", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {