Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Jan 19, 2024
1 parent 5e20058 commit d6c9e85
Show file tree
Hide file tree
Showing 14 changed files with 49 additions and 47 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## [Unreleased](https://github.com/dalance/veryl/compare/v0.5.6...Unreleased) - ReleaseDate
## [Unreleased](https://github.com/dalance/veryl/compare/v0.6.0...Unreleased) - ReleaseDate

## [v0.6.0](https://github.com/dalance/veryl/compare/v0.5.6...v0.6.0) - 2024-01-19

## [v0.5.6](https://github.com/dalance/veryl/compare/v0.5.5...v0.5.6) - 2023-10-19

Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md)
[![Changelog](https://img.shields.io/badge/changelog-v0.6.0-green.svg)](https://github.com/dalance/veryl/blob/master/CHANGELOG.md)

Veryl is a modern hardware description language.

Expand Down
6 changes: 3 additions & 3 deletions crates/analyzer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-analyzer"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -17,8 +17,8 @@ Inflector = "0.11.4"
miette = {workspace = true}
strnum_bitwidth = {workspace = true}
thiserror = {workspace = true}
veryl-metadata = {version = "0.5.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}
daggy = "0.8.0"
bimap = "0.6.3"

Expand Down
8 changes: 4 additions & 4 deletions crates/emitter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-emitter"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -15,6 +15,6 @@ edition = "2021"
[dependencies]
serde = {workspace = true}
strnum_bitwidth = {workspace = true}
veryl-analyzer = {version = "0.5.6", path = "../analyzer"}
veryl-metadata = {version = "0.5.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-analyzer = {version = "0.6.0", path = "../analyzer"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}
6 changes: 3 additions & 3 deletions crates/formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-formatter"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -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.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}
10 changes: 5 additions & 5 deletions crates/languageserver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-ls"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -24,7 +24,7 @@ miette = {workspace = true}
serde_json = {workspace = true}
tokio = {version = "1.35.1", features = ["full"]}
tower-lsp = "0.20.0"
veryl-analyzer = {version = "0.5.6", path = "../analyzer"}
veryl-formatter = {version = "0.5.6", path = "../formatter"}
veryl-metadata = {version = "0.5.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-analyzer = {version = "0.6.0", path = "../analyzer"}
veryl-formatter = {version = "0.6.0", path = "../formatter"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}
4 changes: 2 additions & 2 deletions crates/mdbook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-veryl"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -21,4 +21,4 @@ pulldown-cmark = "0.9.3"
regex = {workspace = true}
semver = {workspace = true}
serde_json = {workspace = true}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-parser = {version = "0.6.0", path = "../parser"}
4 changes: 2 additions & 2 deletions crates/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-metadata"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -26,7 +26,7 @@ thiserror = {workspace = true}
toml = {workspace = true}
url = {workspace = true}
uuid = {version = "1.6", default-features = false, features = ["v5", "serde"]}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-parser = {version = "0.6.0", path = "../parser"}
walkdir = "2.4.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl-parser"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions crates/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.6", path = "../analyzer"}
veryl-emitter = {version = "0.5.6", path = "../emitter"}
veryl-formatter = {version = "0.5.6", path = "../formatter"}
veryl-metadata = {version = "0.5.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-analyzer = {version = "0.6.0", path = "../analyzer"}
veryl-emitter = {version = "0.6.0", path = "../emitter"}
veryl-formatter = {version = "0.6.0", path = "../formatter"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}

[dev-dependencies]
criterion = "0.5.1"
Expand Down
12 changes: 6 additions & 6 deletions crates/veryl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "veryl"
version = "0.5.6"
version = "0.6.0"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down Expand Up @@ -36,8 +36,8 @@ serde_json = {workspace = true}
similar = {version = "2.4.0", features = ["text", "inline"]}
tempfile = {workspace = true}
thiserror = {workspace = true}
veryl-analyzer = {version = "0.5.6", path = "../analyzer"}
veryl-emitter = {version = "0.5.6", path = "../emitter"}
veryl-formatter = {version = "0.5.6", path = "../formatter"}
veryl-metadata = {version = "0.5.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-analyzer = {version = "0.6.0", path = "../analyzer"}
veryl-emitter = {version = "0.6.0", path = "../emitter"}
veryl-formatter = {version = "0.6.0", path = "../formatter"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}
10 changes: 5 additions & 5 deletions crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ crate-type = ["cdylib"]
[dependencies]
miette = {workspace = true}
semver = {version = "1.0", features = ["serde"]}
veryl-analyzer = {version = "0.5.6", path = "../analyzer"}
veryl-emitter = {version = "0.5.6", path = "../emitter"}
veryl-formatter = {version = "0.5.6", path = "../formatter"}
veryl-metadata = {version = "0.5.6", path = "../metadata"}
veryl-parser = {version = "0.5.6", path = "../parser"}
veryl-analyzer = {version = "0.6.0", path = "../analyzer"}
veryl-emitter = {version = "0.6.0", path = "../emitter"}
veryl-formatter = {version = "0.6.0", path = "../formatter"}
veryl-metadata = {version = "0.6.0", path = "../metadata"}
veryl-parser = {version = "0.6.0", path = "../parser"}
wasm-bindgen = "0.2"

[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion support/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-veryl",
"displayName": "Veryl",
"description": "Veryl extension for Visual Studio Code",
"version": "0.5.6",
"version": "0.6.0",
"publisher": "dalance",
"icon": "veryl_icon.png",
"galleryBanner": {
Expand Down

0 comments on commit d6c9e85

Please sign in to comment.