From 9b922b6cdd4208011fb322327df3c1aabdc3d08c Mon Sep 17 00:00:00 2001 From: dalance Date: Mon, 25 Nov 2024 12:50:05 +0900 Subject: [PATCH] chore: Release --- CHANGELOG.md | 4 +++- Cargo.lock | 24 ++++++++++++------------ README.md | 2 +- crates/aligner/Cargo.toml | 4 ++-- crates/analyzer/Cargo.toml | 6 +++--- crates/emitter/Cargo.toml | 12 ++++++------ crates/formatter/Cargo.toml | 8 ++++---- crates/languageserver/Cargo.toml | 12 ++++++------ crates/mdbook/Cargo.toml | 10 +++++----- crates/metadata/Cargo.toml | 8 ++++---- crates/parser/Cargo.toml | 2 +- crates/path/Cargo.toml | 2 +- crates/sourcemap/Cargo.toml | 2 +- crates/std/Cargo.toml | 4 ++-- crates/tests/Cargo.toml | 14 +++++++------- crates/veryl/Cargo.toml | 16 ++++++++-------- support/vscode/package.json | 2 +- 17 files changed, 67 insertions(+), 65 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 474a164a..60fa0861 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.13.2...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.13.3...Unreleased) - ReleaseDate + +## [v0.13.3](https://github.com/veryl-lang/veryl/compare/v0.13.2...v0.13.3) - 2024-11-25 ## [v0.13.2](https://github.com/veryl-lang/veryl/compare/v0.13.1...v0.13.2) - 2024-10-30 diff --git a/Cargo.lock b/Cargo.lock index dae6e328..ef0ad270 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2810,7 +2810,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.13.2" +version = "0.13.3" dependencies = [ "anyhow", "clap", @@ -4886,7 +4886,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "veryl" -version = "0.13.2" +version = "0.13.3" dependencies = [ "anstyle", "clap", @@ -4919,14 +4919,14 @@ dependencies = [ [[package]] name = "veryl-aligner" -version = "0.13.2" +version = "0.13.3" dependencies = [ "veryl-parser", ] [[package]] name = "veryl-analyzer" -version = "0.13.2" +version = "0.13.3" dependencies = [ "bimap", "daggy", @@ -4941,7 +4941,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.13.2" +version = "0.13.3" dependencies = [ "serde", "strnum_bitwidth", @@ -4955,7 +4955,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.13.2" +version = "0.13.3" dependencies = [ "veryl-aligner", "veryl-metadata", @@ -4964,7 +4964,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.13.2" +version = "0.13.3" dependencies = [ "async-channel", "dashmap 6.1.0", @@ -4984,7 +4984,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.13.2" +version = "0.13.3" dependencies = [ "git-repository", "log", @@ -5007,7 +5007,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.13.2" +version = "0.13.3" dependencies = [ "anyhow", "bimap", @@ -5022,7 +5022,7 @@ dependencies = [ [[package]] name = "veryl-path" -version = "0.13.2" +version = "0.13.3" dependencies = [ "directories", "fs4", @@ -5034,7 +5034,7 @@ dependencies = [ [[package]] name = "veryl-sourcemap" -version = "0.13.2" +version = "0.13.3" dependencies = [ "miette", "relative-path", @@ -5044,7 +5044,7 @@ dependencies = [ [[package]] name = "veryl-std" -version = "0.13.2" +version = "0.13.3" dependencies = [ "merkle_hash", "miette", diff --git a/README.md b/README.md index 117800d5..167cf11d 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.13.2-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.13.3-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md) Veryl is a modern hardware description language. diff --git a/crates/aligner/Cargo.toml b/crates/aligner/Cargo.toml index f3ac2186..48bd0fe3 100644 --- a/crates/aligner/Cargo.toml +++ b/crates/aligner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-aligner" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -11,4 +11,4 @@ description.workspace = true edition = "2021" [dependencies] -veryl-parser = {version = "0.13.2", path = "../parser"} +veryl-parser = {version = "0.13.3", path = "../parser"} diff --git a/crates/analyzer/Cargo.toml b/crates/analyzer/Cargo.toml index 8f6da166..45a29bdd 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -16,8 +16,8 @@ edition = "2021" itertools = "0.13.0" strnum_bitwidth = {workspace = true} thiserror = {workspace = true} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} daggy = "0.8.0" bimap = "0.6.3" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index 98b7bfc8..42104496 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -15,11 +15,11 @@ edition = "2021" [dependencies] serde = {workspace = true} strnum_bitwidth = {workspace = true} -veryl-aligner = {version = "0.13.2", path = "../aligner"} -veryl-analyzer = {version = "0.13.2", path = "../analyzer"} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} -veryl-sourcemap = {version = "0.13.2", path = "../sourcemap"} +veryl-aligner = {version = "0.13.3", path = "../aligner"} +veryl-analyzer = {version = "0.13.3", path = "../analyzer"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} +veryl-sourcemap = {version = "0.13.3", path = "../sourcemap"} [dev-dependencies] toml = {workspace = true} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index e61e4d67..2e07627f 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -13,6 +13,6 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -veryl-aligner = {version = "0.13.2", path = "../aligner"} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} +veryl-aligner = {version = "0.13.3", path = "../aligner"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 3fc1942a..54d61ce3 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,8 +24,8 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {workspace = true} tower-lsp = "0.20.0" -veryl-analyzer = {version = "0.13.2", path = "../analyzer"} -veryl-formatter = {version = "0.13.2", path = "../formatter"} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} -veryl-path = {version = "0.13.2", path = "../path"} +veryl-analyzer = {version = "0.13.3", path = "../analyzer"} +veryl-formatter = {version = "0.13.3", path = "../formatter"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} +veryl-path = {version = "0.13.3", path = "../path"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index ce8cc3be..02ae93d1 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.13.2" +version = "0.13.3" 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.13.2", path = "../analyzer"} -veryl-formatter = {version = "0.13.2", path = "../formatter"} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} +veryl-analyzer = {version = "0.13.3", path = "../analyzer"} +veryl-formatter = {version = "0.13.3", path = "../formatter"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index a4edaf18..ee194894 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -25,9 +25,9 @@ thiserror = {workspace = true} toml = {workspace = true} url = {workspace = true} uuid = {version = "1.11", default-features = false, features = ["v5", "serde"]} -veryl-parser = {version = "0.13.2", path = "../parser"} -veryl-path = {version = "0.13.2", path = "../path"} -veryl-std = {version = "0.13.2", path = "../std"} +veryl-parser = {version = "0.13.3", path = "../parser"} +veryl-path = {version = "0.13.3", path = "../path"} +veryl-std = {version = "0.13.3", path = "../std"} [target.'cfg(target_family = "wasm")'.dependencies] miette = {workspace = true, features = ["fancy-no-syscall"]} diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 0f387f68..b1cc34d5 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/path/Cargo.toml b/crates/path/Cargo.toml index 207afb37..bc46614d 100644 --- a/crates/path/Cargo.toml +++ b/crates/path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-path" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/sourcemap/Cargo.toml b/crates/sourcemap/Cargo.toml index fad16944..9d3f90b7 100644 --- a/crates/sourcemap/Cargo.toml +++ b/crates/sourcemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-sourcemap" -version = "0.13.2" +version = "0.13.3" edition = "2021" authors.workspace = true repository.workspace = true diff --git a/crates/std/Cargo.toml b/crates/std/Cargo.toml index 62eabd6c..84beca18 100644 --- a/crates/std/Cargo.toml +++ b/crates/std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-std" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,7 +14,7 @@ edition = "2021" miette = {workspace = true} rust-embed = {version = "8.5", features = ["debug-embed", "compression", "include-exclude"]} thiserror = {workspace = true} -veryl-path = {version = "0.13.2", path = "../path"} +veryl-path = {version = "0.13.3", path = "../path"} [build-dependencies] merkle_hash = "3.7" diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index 8a8d7d6e..f6c62e71 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -6,13 +6,13 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -veryl-analyzer = {version = "0.13.2", path = "../analyzer"} -veryl-emitter = {version = "0.13.2", path = "../emitter"} -veryl-formatter = {version = "0.13.2", path = "../formatter"} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} -veryl-path = {version = "0.13.2", path = "../path"} -veryl = {version = "0.13.2", path = "../veryl"} +veryl-analyzer = {version = "0.13.3", path = "../analyzer"} +veryl-emitter = {version = "0.13.3", path = "../emitter"} +veryl-formatter = {version = "0.13.3", path = "../formatter"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} +veryl-path = {version = "0.13.3", path = "../path"} +veryl = {version = "0.13.3", path = "../veryl"} [dev-dependencies] criterion = "0.5.1" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 19d3b22b..9845c46f 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.13.2" +version = "0.13.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -45,10 +45,10 @@ tempfile = {workspace = true} thiserror = {workspace = true} tokio = {workspace = true} tokio-util = "0.7.12" -veryl-analyzer = {version = "0.13.2", path = "../analyzer"} -veryl-emitter = {version = "0.13.2", path = "../emitter"} -veryl-formatter = {version = "0.13.2", path = "../formatter"} -veryl-metadata = {version = "0.13.2", path = "../metadata"} -veryl-parser = {version = "0.13.2", path = "../parser"} -veryl-path = {version = "0.13.2", path = "../path"} -veryl-sourcemap = {version = "0.13.2", path = "../sourcemap"} +veryl-analyzer = {version = "0.13.3", path = "../analyzer"} +veryl-emitter = {version = "0.13.3", path = "../emitter"} +veryl-formatter = {version = "0.13.3", path = "../formatter"} +veryl-metadata = {version = "0.13.3", path = "../metadata"} +veryl-parser = {version = "0.13.3", path = "../parser"} +veryl-path = {version = "0.13.3", path = "../path"} +veryl-sourcemap = {version = "0.13.3", path = "../sourcemap"} diff --git a/support/vscode/package.json b/support/vscode/package.json index 7b19958e..88b13e8b 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.13.2", + "version": "0.13.3", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {