Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed May 27, 2024
1 parent f371024 commit bfbe6c9
Show file tree
Hide file tree
Showing 13 changed files with 47 additions and 45 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/veryl-lang/veryl/compare/v0.10.0...Unreleased) - ReleaseDate
## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.10.1...Unreleased) - ReleaseDate

## [v0.10.1](https://github.com/veryl-lang/veryl/compare/v0.10.0...v0.10.1) - 2024-05-27

## [v0.10.0](https://github.com/veryl-lang/veryl/compare/v0.9.0...v0.10.0) - 2024-05-10

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/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.10.0-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md)
[![Changelog](https://img.shields.io/badge/changelog-v0.10.1-green.svg)](https://github.com/veryl-lang/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.10.0"
version = "0.10.1"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -18,8 +18,8 @@ itertools = "0.13.0"
miette = {workspace = true}
strnum_bitwidth = {workspace = true}
thiserror = {workspace = true}
veryl-metadata = {version = "0.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", 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.10.0"
version = "0.10.1"
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.10.0", path = "../analyzer"}
veryl-metadata = {version = "0.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-analyzer = {version = "0.10.1", path = "../analyzer"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", 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.10.0"
version = "0.10.1"
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.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", 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.10.0"
version = "0.10.1"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -24,7 +24,7 @@ miette = {workspace = true}
serde_json = {workspace = true}
tokio = {workspace = true}
tower-lsp = "0.20.0"
veryl-analyzer = {version = "0.10.0", path = "../analyzer"}
veryl-formatter = {version = "0.10.0", path = "../formatter"}
veryl-metadata = {version = "0.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-analyzer = {version = "0.10.1", path = "../analyzer"}
veryl-formatter = {version = "0.10.1", path = "../formatter"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", path = "../parser"}
10 changes: 5 additions & 5 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.10.0"
version = "0.10.1"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -23,7 +23,7 @@ semver = {workspace = true}
serde_json = {workspace = true}
similar = {workspace = true}
toml = {workspace = true}
veryl-analyzer = {version = "0.10.0", path = "../analyzer"}
veryl-formatter = {version = "0.10.0", path = "../formatter"}
veryl-metadata = {version = "0.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-analyzer = {version = "0.10.1", path = "../analyzer"}
veryl-formatter = {version = "0.10.1", path = "../formatter"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", 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.10.0"
version = "0.10.1"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand All @@ -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.10.0", path = "../parser"}
veryl-parser = {version = "0.10.1", path = "../parser"}
walkdir = "2.5.0"

[target.'cfg(not(target_family = "wasm"))'.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.10.0"
version = "0.10.1"
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.10.0", path = "../analyzer"}
veryl-emitter = {version = "0.10.0", path = "../emitter"}
veryl-formatter = {version = "0.10.0", path = "../formatter"}
veryl-metadata = {version = "0.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-analyzer = {version = "0.10.1", path = "../analyzer"}
veryl-emitter = {version = "0.10.1", path = "../emitter"}
veryl-formatter = {version = "0.10.1", path = "../formatter"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", 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.10.0"
version = "0.10.1"
authors.workspace = true
repository.workspace = true
keywords.workspace = true
Expand Down Expand Up @@ -44,8 +44,8 @@ tempfile = {workspace = true}
thiserror = {workspace = true}
tokio = {workspace = true}
tokio-util = "0.7.11"
veryl-analyzer = {version = "0.10.0", path = "../analyzer"}
veryl-emitter = {version = "0.10.0", path = "../emitter"}
veryl-formatter = {version = "0.10.0", path = "../formatter"}
veryl-metadata = {version = "0.10.0", path = "../metadata"}
veryl-parser = {version = "0.10.0", path = "../parser"}
veryl-analyzer = {version = "0.10.1", path = "../analyzer"}
veryl-emitter = {version = "0.10.1", path = "../emitter"}
veryl-formatter = {version = "0.10.1", path = "../formatter"}
veryl-metadata = {version = "0.10.1", path = "../metadata"}
veryl-parser = {version = "0.10.1", path = "../parser"}
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.10.0",
"version": "0.10.1",
"publisher": "dalance",
"icon": "veryl_icon.png",
"galleryBanner": {
Expand Down

0 comments on commit bfbe6c9

Please sign in to comment.