diff --git a/CHANGELOG.md b/CHANGELOG.md index 9806178a..4bd57fd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.12.0...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.13.0...Unreleased) - ReleaseDate + +## [v0.13.0](https://github.com/veryl-lang/veryl/compare/v0.12.0...v0.13.0) - 2024-09-12 ## [v0.12.0](https://github.com/veryl-lang/veryl/compare/v0.11.3...v0.12.0) - 2024-08-21 diff --git a/Cargo.lock b/Cargo.lock index 6624f7a2..b3f54937 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2654,7 +2654,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "clap", @@ -4682,7 +4682,7 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "veryl" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anstyle", "clap", @@ -4714,7 +4714,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.12.0" +version = "0.13.0" dependencies = [ "bimap", "daggy", @@ -4729,7 +4729,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.12.0" +version = "0.13.0" dependencies = [ "serde", "strnum_bitwidth", @@ -4742,7 +4742,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.12.0" +version = "0.13.0" dependencies = [ "veryl-metadata", "veryl-parser", @@ -4750,7 +4750,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.12.0" +version = "0.13.0" dependencies = [ "async-channel", "dashmap 6.1.0", @@ -4770,7 +4770,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.12.0" +version = "0.13.0" dependencies = [ "git-repository", "log", @@ -4793,7 +4793,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.12.0" +version = "0.13.0" dependencies = [ "anyhow", "bimap", @@ -4808,7 +4808,7 @@ dependencies = [ [[package]] name = "veryl-path" -version = "0.12.0" +version = "0.13.0" dependencies = [ "directories", "fs4", @@ -4820,7 +4820,7 @@ dependencies = [ [[package]] name = "veryl-sourcemap" -version = "0.12.0" +version = "0.13.0" dependencies = [ "miette", "relative-path", @@ -4830,7 +4830,7 @@ dependencies = [ [[package]] name = "veryl-std" -version = "0.12.0" +version = "0.13.0" dependencies = [ "merkle_hash", "miette", diff --git a/README.md b/README.md index 188fa82c..6d280a9d 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.12.0-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.13.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 370327b9..9066252a 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.12.0" +version = "0.13.0" 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.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} daggy = "0.8.0" bimap = "0.6.3" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index 00bf634b..0b2fe7c1 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.12.0" +version = "0.13.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -15,10 +15,10 @@ edition = "2021" [dependencies] serde = {workspace = true} strnum_bitwidth = {workspace = true} -veryl-analyzer = {version = "0.12.0", path = "../analyzer"} -veryl-metadata = {version = "0.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} -veryl-sourcemap = {version = "0.12.0", path = "../sourcemap"} +veryl-analyzer = {version = "0.13.0", path = "../analyzer"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} +veryl-sourcemap = {version = "0.13.0", path = "../sourcemap"} [dev-dependencies] toml = {workspace = true} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 8c582e6f..b3ae0614 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.12.0" +version = "0.13.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.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 90f410bf..248cb8ab 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.12.0" +version = "0.13.0" 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.12.0", path = "../analyzer"} -veryl-formatter = {version = "0.12.0", path = "../formatter"} -veryl-metadata = {version = "0.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} -veryl-path = {version = "0.12.0", path = "../path"} +veryl-analyzer = {version = "0.13.0", path = "../analyzer"} +veryl-formatter = {version = "0.13.0", path = "../formatter"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} +veryl-path = {version = "0.13.0", path = "../path"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index 7aa7726f..8d92959c 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.12.0" +version = "0.13.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.12.0", path = "../analyzer"} -veryl-formatter = {version = "0.12.0", path = "../formatter"} -veryl-metadata = {version = "0.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} +veryl-analyzer = {version = "0.13.0", path = "../analyzer"} +veryl-formatter = {version = "0.13.0", path = "../formatter"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index 5941ec11..bf30ae24 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.12.0" +version = "0.13.0" 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.10", default-features = false, features = ["v5", "serde"]} -veryl-parser = {version = "0.12.0", path = "../parser"} -veryl-path = {version = "0.12.0", path = "../path"} -veryl-std = {version = "0.12.0", path = "../std"} +veryl-parser = {version = "0.13.0", path = "../parser"} +veryl-path = {version = "0.13.0", path = "../path"} +veryl-std = {version = "0.13.0", 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 4ef633ef..970ea856 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.12.0" +version = "0.13.0" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/path/Cargo.toml b/crates/path/Cargo.toml index 8d836301..3955e8e8 100644 --- a/crates/path/Cargo.toml +++ b/crates/path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-path" -version = "0.12.0" +version = "0.13.0" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/sourcemap/Cargo.toml b/crates/sourcemap/Cargo.toml index ad404289..81a364a9 100644 --- a/crates/sourcemap/Cargo.toml +++ b/crates/sourcemap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-sourcemap" -version = "0.12.0" +version = "0.13.0" edition = "2021" authors.workspace = true repository.workspace = true diff --git a/crates/std/Cargo.toml b/crates/std/Cargo.toml index f0cc1756..9b052c3d 100644 --- a/crates/std/Cargo.toml +++ b/crates/std/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-std" -version = "0.12.0" +version = "0.13.0" 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.12.0", path = "../path"} +veryl-path = {version = "0.13.0", path = "../path"} [build-dependencies] merkle_hash = "3.7" diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index c5e40992..05d9b9f6 100644 --- a/crates/tests/Cargo.toml +++ b/crates/tests/Cargo.toml @@ -6,12 +6,12 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -veryl-analyzer = {version = "0.12.0", path = "../analyzer"} -veryl-emitter = {version = "0.12.0", path = "../emitter"} -veryl-formatter = {version = "0.12.0", path = "../formatter"} -veryl-metadata = {version = "0.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} -veryl-path = {version = "0.12.0", path = "../path"} +veryl-analyzer = {version = "0.13.0", path = "../analyzer"} +veryl-emitter = {version = "0.13.0", path = "../emitter"} +veryl-formatter = {version = "0.13.0", path = "../formatter"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} +veryl-path = {version = "0.13.0", path = "../path"} [dev-dependencies] criterion = "0.5.1" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index a5c5999d..e6955de3 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.12.0" +version = "0.13.0" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -44,10 +44,10 @@ tempfile = {workspace = true} thiserror = {workspace = true} tokio = {workspace = true} tokio-util = "0.7.12" -veryl-analyzer = {version = "0.12.0", path = "../analyzer"} -veryl-emitter = {version = "0.12.0", path = "../emitter"} -veryl-formatter = {version = "0.12.0", path = "../formatter"} -veryl-metadata = {version = "0.12.0", path = "../metadata"} -veryl-parser = {version = "0.12.0", path = "../parser"} -veryl-path = {version = "0.12.0", path = "../path"} -veryl-sourcemap = {version = "0.12.0", path = "../sourcemap"} +veryl-analyzer = {version = "0.13.0", path = "../analyzer"} +veryl-emitter = {version = "0.13.0", path = "../emitter"} +veryl-formatter = {version = "0.13.0", path = "../formatter"} +veryl-metadata = {version = "0.13.0", path = "../metadata"} +veryl-parser = {version = "0.13.0", path = "../parser"} +veryl-path = {version = "0.13.0", path = "../path"} +veryl-sourcemap = {version = "0.13.0", path = "../sourcemap"} diff --git a/support/vscode/package.json b/support/vscode/package.json index a3b2b17a..08647b5f 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.12.0", + "version": "0.13.0", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {