From a0c5f1839839810e9c226f830fdf90795c9f1233 Mon Sep 17 00:00:00 2001 From: dalance Date: Thu, 18 Apr 2024 10:04:48 +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 26012bce..4e83de1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.8.2...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.9.0...Unreleased) - ReleaseDate + +## [v0.9.0](https://github.com/veryl-lang/veryl/compare/v0.8.2...v0.9.0) - 2024-04-18 ## [v0.8.2](https://github.com/veryl-lang/veryl/compare/v0.8.1...v0.8.2) - 2024-04-01 diff --git a/Cargo.lock b/Cargo.lock index b71ba58d..21f7b671 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2492,7 +2492,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.8.2" +version = "0.9.0" dependencies = [ "anyhow", "clap 4.5.4", @@ -4464,7 +4464,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.8.2" +version = "0.9.0" dependencies = [ "clap 4.5.4", "console", @@ -4490,7 +4490,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.8.2" +version = "0.9.0" dependencies = [ "Inflector", "bimap", @@ -4506,7 +4506,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.8.2" +version = "0.9.0" dependencies = [ "serde", "strnum_bitwidth", @@ -4517,7 +4517,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.8.2" +version = "0.9.0" dependencies = [ "veryl-metadata", "veryl-parser", @@ -4525,7 +4525,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.8.2" +version = "0.9.0" dependencies = [ "async-channel", "dashmap", @@ -4544,7 +4544,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.8.2" +version = "0.9.0" dependencies = [ "directories", "fs4", @@ -4568,7 +4568,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.8.2" +version = "0.9.0" dependencies = [ "anyhow", "bimap", diff --git a/README.md b/README.md index c4af5d0f..a4d9bd82 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.8.2-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.9.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 713904cb..cfd375af 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.8.2" +version = "0.9.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.8.2", path = "../metadata"} -veryl-parser = {version = "0.8.2", path = "../parser"} +veryl-metadata = {version = "0.9.0", path = "../metadata"} +veryl-parser = {version = "0.9.0", path = "../parser"} daggy = "0.8.0" bimap = "0.6.3" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index cafd2894..e8515122 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.8.2" +version = "0.9.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.8.2", path = "../analyzer"} -veryl-metadata = {version = "0.8.2", path = "../metadata"} -veryl-parser = {version = "0.8.2", path = "../parser"} +veryl-analyzer = {version = "0.9.0", path = "../analyzer"} +veryl-metadata = {version = "0.9.0", path = "../metadata"} +veryl-parser = {version = "0.9.0", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 31175aa4..361499e6 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.8.2" +version = "0.9.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.8.2", path = "../metadata"} -veryl-parser = {version = "0.8.2", path = "../parser"} +veryl-metadata = {version = "0.9.0", path = "../metadata"} +veryl-parser = {version = "0.9.0", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 8f2a1fb8..d527b06e 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.8.2" +version = "0.9.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,7 +24,7 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {version = "1.37.0", features = ["full"]} tower-lsp = "0.20.0" -veryl-analyzer = {version = "0.8.2", path = "../analyzer"} -veryl-formatter = {version = "0.8.2", path = "../formatter"} -veryl-metadata = {version = "0.8.2", path = "../metadata"} -veryl-parser = {version = "0.8.2", path = "../parser"} +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"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index 957c0342..fecbbcf0 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.8.2" +version = "0.9.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -21,4 +21,4 @@ pulldown-cmark = "0.10.2" regex = {workspace = true} semver = {workspace = true} serde_json = {workspace = true} -veryl-parser = {version = "0.8.2", path = "../parser"} +veryl-parser = {version = "0.9.0", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 3097f658..c652cf37 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.8.2" +version = "0.9.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.8.2", path = "../parser"} +veryl-parser = {version = "0.9.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 9ee28ff8..662d706e 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.8.2" +version = "0.9.0" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 6b3c5f5f..87bf68c0 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.8.2", path = "../analyzer"} -veryl-emitter = {version = "0.8.2", path = "../emitter"} -veryl-formatter = {version = "0.8.2", path = "../formatter"} -veryl-metadata = {version = "0.8.2", path = "../metadata"} -veryl-parser = {version = "0.8.2", path = "../parser"} +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"} [dev-dependencies] criterion = "0.5.1" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 9a23a43e..0fc7643f 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.8.2" +version = "0.9.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -38,8 +38,8 @@ serde_json = {workspace = true} similar = {version = "2.5.0", features = ["text", "inline"]} tempfile = {workspace = true} thiserror = {workspace = true} -veryl-analyzer = {version = "0.8.2", path = "../analyzer"} -veryl-emitter = {version = "0.8.2", path = "../emitter"} -veryl-formatter = {version = "0.8.2", path = "../formatter"} -veryl-metadata = {version = "0.8.2", path = "../metadata"} -veryl-parser = {version = "0.8.2", path = "../parser"} +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"} diff --git a/support/vscode/package.json b/support/vscode/package.json index fd14e6e5..6a238743 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.8.2", + "version": "0.9.0", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {