diff --git a/CHANGELOG.md b/CHANGELOG.md index 8541f575..3db1b0ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Change Log -## [Unreleased](https://github.com/dalance/veryl/compare/v0.5.2...Unreleased) - ReleaseDate +## [Unreleased](https://github.com/dalance/veryl/compare/v0.5.3...Unreleased) - ReleaseDate + +## [v0.5.3](https://github.com/dalance/veryl/compare/v0.5.2...v0.5.3) - 2023-03-05 ## [v0.5.2](https://github.com/dalance/veryl/compare/v0.5.1...v0.5.2) - 2023-02-28 diff --git a/Cargo.lock b/Cargo.lock index 6c7c0eed..c4fa2227 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2311,7 +2311,7 @@ dependencies = [ [[package]] name = "mdbook-veryl" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "clap 4.1.8", @@ -4128,7 +4128,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "veryl" -version = "0.5.2" +version = "0.5.3" dependencies = [ "clap 4.1.8", "console", @@ -4148,7 +4148,7 @@ dependencies = [ [[package]] name = "veryl-analyzer" -version = "0.5.2" +version = "0.5.3" dependencies = [ "Inflector", "miette", @@ -4160,7 +4160,7 @@ dependencies = [ [[package]] name = "veryl-emitter" -version = "0.5.2" +version = "0.5.3" dependencies = [ "serde", "veryl-analyzer", @@ -4170,7 +4170,7 @@ dependencies = [ [[package]] name = "veryl-formatter" -version = "0.5.2" +version = "0.5.3" dependencies = [ "veryl-metadata", "veryl-parser", @@ -4178,7 +4178,7 @@ dependencies = [ [[package]] name = "veryl-ls" -version = "0.5.2" +version = "0.5.3" dependencies = [ "async-channel", "dashmap", @@ -4197,7 +4197,7 @@ dependencies = [ [[package]] name = "veryl-metadata" -version = "0.5.2" +version = "0.5.3" dependencies = [ "directories", "git-repository", @@ -4219,7 +4219,7 @@ dependencies = [ [[package]] name = "veryl-parser" -version = "0.5.2" +version = "0.5.3" dependencies = [ "anyhow", "bimap", diff --git a/README.md b/README.md index ad0b4b39..2eacc45c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Actions Status](https://github.com/dalance/veryl/workflows/Regression/badge.svg)](https://github.com/dalance/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.5.2-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md) +[![Changelog](https://img.shields.io/badge/changelog-v0.5.3-green.svg)](https://github.com/dalance/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 201a7b16..19ac356a 100644 --- a/crates/analyzer/Cargo.toml +++ b/crates/analyzer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-analyzer" -version = "0.5.2" +version = "0.5.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -16,8 +16,8 @@ edition = "2021" Inflector = "0.11.4" miette = {workspace = true} thiserror = {workspace = true} -veryl-metadata = {version = "0.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} [dev-dependencies] toml = {workspace = true} diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index c53fe317..65c71663 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-emitter" -version = "0.5.2" +version = "0.5.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -14,6 +14,6 @@ edition = "2021" [dependencies] serde = {workspace = true} -veryl-analyzer = {version = "0.5.2", path = "../analyzer"} -veryl-metadata = {version = "0.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-analyzer = {version = "0.5.3", path = "../analyzer"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} diff --git a/crates/formatter/Cargo.toml b/crates/formatter/Cargo.toml index 2b70b70b..3e5bee14 100644 --- a/crates/formatter/Cargo.toml +++ b/crates/formatter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-formatter" -version = "0.5.2" +version = "0.5.3" 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.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} diff --git a/crates/languageserver/Cargo.toml b/crates/languageserver/Cargo.toml index 0a67d3a9..ee365028 100644 --- a/crates/languageserver/Cargo.toml +++ b/crates/languageserver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-ls" -version = "0.5.2" +version = "0.5.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -24,7 +24,7 @@ miette = {workspace = true} serde_json = {workspace = true} tokio = {version = "1.26.0", features = ["full"]} tower-lsp = "0.19.0" -veryl-analyzer = {version = "0.5.2", path = "../analyzer"} -veryl-formatter = {version = "0.5.2", path = "../formatter"} -veryl-metadata = {version = "0.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-analyzer = {version = "0.5.3", path = "../analyzer"} +veryl-formatter = {version = "0.5.3", path = "../formatter"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} diff --git a/crates/mdbook/Cargo.toml b/crates/mdbook/Cargo.toml index 48bfae95..00403049 100644 --- a/crates/mdbook/Cargo.toml +++ b/crates/mdbook/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mdbook-veryl" -version = "0.5.2" +version = "0.5.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -21,4 +21,4 @@ pulldown-cmark = "0.9.2" regex = {workspace = true} semver = {workspace = true} serde_json = {workspace = true} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-parser = {version = "0.5.3", path = "../parser"} diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index ac455270..4a893a57 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-metadata" -version = "0.5.2" +version = "0.5.3" 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.3", default-features = false, features = ["v5", "serde"]} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-parser = {version = "0.5.3", path = "../parser"} walkdir = "2.3.2" [dev-dependencies] diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index bf106380..3a99637d 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl-parser" -version = "0.5.2" +version = "0.5.3" authors.workspace = true repository.workspace = true keywords.workspace = true diff --git a/crates/tests/Cargo.toml b/crates/tests/Cargo.toml index dda615aa..4034e853 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.5.2", path = "../analyzer"} -veryl-emitter = {version = "0.5.2", path = "../emitter"} -veryl-formatter = {version = "0.5.2", path = "../formatter"} -veryl-metadata = {version = "0.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-analyzer = {version = "0.5.3", path = "../analyzer"} +veryl-emitter = {version = "0.5.3", path = "../emitter"} +veryl-formatter = {version = "0.5.3", path = "../formatter"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} [dev-dependencies] criterion = "0.4.0" diff --git a/crates/veryl/Cargo.toml b/crates/veryl/Cargo.toml index 1a639637..dbad13c4 100644 --- a/crates/veryl/Cargo.toml +++ b/crates/veryl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "veryl" -version = "0.5.2" +version = "0.5.3" authors.workspace = true repository.workspace = true keywords.workspace = true @@ -32,8 +32,8 @@ regex = {workspace = true} serde_json = {workspace = true} similar = {version = "2.2.1", features = ["text", "inline"]} thiserror = {workspace = true} -veryl-analyzer = {version = "0.5.2", path = "../analyzer"} -veryl-emitter = {version = "0.5.2", path = "../emitter"} -veryl-formatter = {version = "0.5.2", path = "../formatter"} -veryl-metadata = {version = "0.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-analyzer = {version = "0.5.3", path = "../analyzer"} +veryl-emitter = {version = "0.5.3", path = "../emitter"} +veryl-formatter = {version = "0.5.3", path = "../formatter"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} diff --git a/crates/wasm/Cargo.toml b/crates/wasm/Cargo.toml index 2e0c83c9..1e453b46 100644 --- a/crates/wasm/Cargo.toml +++ b/crates/wasm/Cargo.toml @@ -11,11 +11,11 @@ crate-type = ["cdylib"] [dependencies] miette = {workspace = true} semver = {version = "1.0", features = ["serde"]} -veryl-analyzer = {version = "0.5.2", path = "../analyzer"} -veryl-emitter = {version = "0.5.2", path = "../emitter"} -veryl-formatter = {version = "0.5.2", path = "../formatter"} -veryl-metadata = {version = "0.5.2", path = "../metadata"} -veryl-parser = {version = "0.5.2", path = "../parser"} +veryl-analyzer = {version = "0.5.3", path = "../analyzer"} +veryl-emitter = {version = "0.5.3", path = "../emitter"} +veryl-formatter = {version = "0.5.3", path = "../formatter"} +veryl-metadata = {version = "0.5.3", path = "../metadata"} +veryl-parser = {version = "0.5.3", path = "../parser"} wasm-bindgen = "0.2" [package.metadata.release] diff --git a/support/vscode/package.json b/support/vscode/package.json index 28f9e4b5..a926c171 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.5.2", + "version": "0.5.3", "publisher": "dalance", "icon": "veryl_icon.png", "galleryBanner": {