Skip to content

Commit 979f001

Browse files
committed
chore: Release
1 parent 6fe28bd commit 979f001

File tree

13 files changed

+44
-42
lines changed

13 files changed

+44
-42
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Change Log
22

3-
## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.8.0...Unreleased) - ReleaseDate
3+
## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.8.1...Unreleased) - ReleaseDate
4+
5+
## [v0.8.1](https://github.com/veryl-lang/veryl/compare/v0.8.0...v0.8.1) - 2024-03-14
46

57
## [v0.8.0](https://github.com/veryl-lang/veryl/compare/v0.7.2...v0.8.0) - 2024-03-14
68

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Actions Status](https://github.com/veryl-lang/veryl/workflows/Regression/badge.svg)](https://github.com/veryl-lang/veryl/actions)
44
[![Crates.io](https://img.shields.io/crates/v/veryl.svg)](https://crates.io/crates/veryl)
5-
[![Changelog](https://img.shields.io/badge/changelog-v0.8.0-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md)
5+
[![Changelog](https://img.shields.io/badge/changelog-v0.8.1-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md)
66

77
Veryl is a modern hardware description language.
88

crates/analyzer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl-analyzer"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -17,8 +17,8 @@ Inflector = "0.11.4"
1717
miette = {workspace = true}
1818
strnum_bitwidth = {workspace = true}
1919
thiserror = {workspace = true}
20-
veryl-metadata = {version = "0.8.0", path = "../metadata"}
21-
veryl-parser = {version = "0.8.0", path = "../parser"}
20+
veryl-metadata = {version = "0.8.1", path = "../metadata"}
21+
veryl-parser = {version = "0.8.1", path = "../parser"}
2222
daggy = "0.8.0"
2323
bimap = "0.6.3"
2424

crates/emitter/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl-emitter"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -15,6 +15,6 @@ edition = "2021"
1515
[dependencies]
1616
serde = {workspace = true}
1717
strnum_bitwidth = {workspace = true}
18-
veryl-analyzer = {version = "0.8.0", path = "../analyzer"}
19-
veryl-metadata = {version = "0.8.0", path = "../metadata"}
20-
veryl-parser = {version = "0.8.0", path = "../parser"}
18+
veryl-analyzer = {version = "0.8.1", path = "../analyzer"}
19+
veryl-metadata = {version = "0.8.1", path = "../metadata"}
20+
veryl-parser = {version = "0.8.1", path = "../parser"}

crates/formatter/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl-formatter"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -13,5 +13,5 @@ edition = "2021"
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
veryl-metadata = {version = "0.8.0", path = "../metadata"}
17-
veryl-parser = {version = "0.8.0", path = "../parser"}
16+
veryl-metadata = {version = "0.8.1", path = "../metadata"}
17+
veryl-parser = {version = "0.8.1", path = "../parser"}

crates/languageserver/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl-ls"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -24,7 +24,7 @@ miette = {workspace = true}
2424
serde_json = {workspace = true}
2525
tokio = {version = "1.36.0", features = ["full"]}
2626
tower-lsp = "0.20.0"
27-
veryl-analyzer = {version = "0.8.0", path = "../analyzer"}
28-
veryl-formatter = {version = "0.8.0", path = "../formatter"}
29-
veryl-metadata = {version = "0.8.0", path = "../metadata"}
30-
veryl-parser = {version = "0.8.0", path = "../parser"}
27+
veryl-analyzer = {version = "0.8.1", path = "../analyzer"}
28+
veryl-formatter = {version = "0.8.1", path = "../formatter"}
29+
veryl-metadata = {version = "0.8.1", path = "../metadata"}
30+
veryl-parser = {version = "0.8.1", path = "../parser"}

crates/mdbook/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-veryl"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -21,4 +21,4 @@ pulldown-cmark = "0.10.0"
2121
regex = {workspace = true}
2222
semver = {workspace = true}
2323
serde_json = {workspace = true}
24-
veryl-parser = {version = "0.8.0", path = "../parser"}
24+
veryl-parser = {version = "0.8.1", path = "../parser"}

crates/metadata/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl-metadata"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -27,7 +27,7 @@ thiserror = {workspace = true}
2727
toml = {workspace = true}
2828
url = {workspace = true}
2929
uuid = {version = "1.7", default-features = false, features = ["v5", "serde"]}
30-
veryl-parser = {version = "0.8.0", path = "../parser"}
30+
veryl-parser = {version = "0.8.1", path = "../parser"}
3131
walkdir = "2.5.0"
3232

3333
[target.'cfg(not(target_family = "wasm"))'.dependencies]

crates/parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl-parser"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true

0 commit comments

Comments
 (0)