Skip to content

Commit 225ec60

Browse files
committed
chore: Release
1 parent bc0e33f commit 225ec60

File tree

16 files changed

+61
-59
lines changed

16 files changed

+61
-59
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.13.1...Unreleased) - ReleaseDate
3+
## [Unreleased](https://github.com/veryl-lang/veryl/compare/v0.13.2...Unreleased) - ReleaseDate
4+
5+
## [v0.13.2](https://github.com/veryl-lang/veryl/compare/v0.13.1...v0.13.2) - 2024-10-30
46

57
## [v0.13.1](https://github.com/veryl-lang/veryl/compare/v0.13.0...v0.13.1) - 2024-10-11
68

Cargo.lock

Lines changed: 11 additions & 11 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.13.1-green.svg)](https://github.com/veryl-lang/veryl/blob/master/CHANGELOG.md)
5+
[![Changelog](https://img.shields.io/badge/changelog-v0.13.2-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.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -16,8 +16,8 @@ edition = "2021"
1616
itertools = "0.13.0"
1717
strnum_bitwidth = {workspace = true}
1818
thiserror = {workspace = true}
19-
veryl-metadata = {version = "0.13.1", path = "../metadata"}
20-
veryl-parser = {version = "0.13.1", path = "../parser"}
19+
veryl-metadata = {version = "0.13.2", path = "../metadata"}
20+
veryl-parser = {version = "0.13.2", path = "../parser"}
2121
daggy = "0.8.0"
2222
bimap = "0.6.3"
2323

crates/emitter/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-emitter"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -15,10 +15,10 @@ edition = "2021"
1515
[dependencies]
1616
serde = {workspace = true}
1717
strnum_bitwidth = {workspace = true}
18-
veryl-analyzer = {version = "0.13.1", path = "../analyzer"}
19-
veryl-metadata = {version = "0.13.1", path = "../metadata"}
20-
veryl-parser = {version = "0.13.1", path = "../parser"}
21-
veryl-sourcemap = {version = "0.13.1", path = "../sourcemap"}
18+
veryl-analyzer = {version = "0.13.2", path = "../analyzer"}
19+
veryl-metadata = {version = "0.13.2", path = "../metadata"}
20+
veryl-parser = {version = "0.13.2", path = "../parser"}
21+
veryl-sourcemap = {version = "0.13.2", path = "../sourcemap"}
2222

2323
[dev-dependencies]
2424
toml = {workspace = true}

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.13.1"
3+
version = "0.13.2"
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.13.1", path = "../metadata"}
17-
veryl-parser = {version = "0.13.1", path = "../parser"}
16+
veryl-metadata = {version = "0.13.2", path = "../metadata"}
17+
veryl-parser = {version = "0.13.2", path = "../parser"}

crates/languageserver/Cargo.toml

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

crates/mdbook/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mdbook-veryl"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -23,7 +23,7 @@ semver = {workspace = true}
2323
serde_json = {workspace = true}
2424
similar = {workspace = true}
2525
toml = {workspace = true}
26-
veryl-analyzer = {version = "0.13.1", path = "../analyzer"}
27-
veryl-formatter = {version = "0.13.1", path = "../formatter"}
28-
veryl-metadata = {version = "0.13.1", path = "../metadata"}
29-
veryl-parser = {version = "0.13.1", path = "../parser"}
26+
veryl-analyzer = {version = "0.13.2", path = "../analyzer"}
27+
veryl-formatter = {version = "0.13.2", path = "../formatter"}
28+
veryl-metadata = {version = "0.13.2", path = "../metadata"}
29+
veryl-parser = {version = "0.13.2", path = "../parser"}

crates/metadata/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-metadata"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -25,9 +25,9 @@ thiserror = {workspace = true}
2525
toml = {workspace = true}
2626
url = {workspace = true}
2727
uuid = {version = "1.11", default-features = false, features = ["v5", "serde"]}
28-
veryl-parser = {version = "0.13.1", path = "../parser"}
29-
veryl-path = {version = "0.13.1", path = "../path"}
30-
veryl-std = {version = "0.13.1", path = "../std"}
28+
veryl-parser = {version = "0.13.2", path = "../parser"}
29+
veryl-path = {version = "0.13.2", path = "../path"}
30+
veryl-std = {version = "0.13.2", path = "../std"}
3131

3232
[target.'cfg(target_family = "wasm")'.dependencies]
3333
miette = {workspace = true, features = ["fancy-no-syscall"]}

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.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true

crates/path/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-path"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true

crates/sourcemap/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-sourcemap"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55
authors.workspace = true
66
repository.workspace = true

crates/std/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-std"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -14,7 +14,7 @@ edition = "2021"
1414
miette = {workspace = true}
1515
rust-embed = {version = "8.5", features = ["debug-embed", "compression", "include-exclude"]}
1616
thiserror = {workspace = true}
17-
veryl-path = {version = "0.13.1", path = "../path"}
17+
veryl-path = {version = "0.13.2", path = "../path"}
1818

1919
[build-dependencies]
2020
merkle_hash = "3.7"

crates/tests/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
veryl-analyzer = {version = "0.13.1", path = "../analyzer"}
10-
veryl-emitter = {version = "0.13.1", path = "../emitter"}
11-
veryl-formatter = {version = "0.13.1", path = "../formatter"}
12-
veryl-metadata = {version = "0.13.1", path = "../metadata"}
13-
veryl-parser = {version = "0.13.1", path = "../parser"}
14-
veryl-path = {version = "0.13.1", path = "../path"}
9+
veryl-analyzer = {version = "0.13.2", path = "../analyzer"}
10+
veryl-emitter = {version = "0.13.2", path = "../emitter"}
11+
veryl-formatter = {version = "0.13.2", path = "../formatter"}
12+
veryl-metadata = {version = "0.13.2", path = "../metadata"}
13+
veryl-parser = {version = "0.13.2", path = "../parser"}
14+
veryl-path = {version = "0.13.2", path = "../path"}
1515

1616
[dev-dependencies]
1717
criterion = "0.5.1"

crates/veryl/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -45,10 +45,10 @@ tempfile = {workspace = true}
4545
thiserror = {workspace = true}
4646
tokio = {workspace = true}
4747
tokio-util = "0.7.12"
48-
veryl-analyzer = {version = "0.13.1", path = "../analyzer"}
49-
veryl-emitter = {version = "0.13.1", path = "../emitter"}
50-
veryl-formatter = {version = "0.13.1", path = "../formatter"}
51-
veryl-metadata = {version = "0.13.1", path = "../metadata"}
52-
veryl-parser = {version = "0.13.1", path = "../parser"}
53-
veryl-path = {version = "0.13.1", path = "../path"}
54-
veryl-sourcemap = {version = "0.13.1", path = "../sourcemap"}
48+
veryl-analyzer = {version = "0.13.2", path = "../analyzer"}
49+
veryl-emitter = {version = "0.13.2", path = "../emitter"}
50+
veryl-formatter = {version = "0.13.2", path = "../formatter"}
51+
veryl-metadata = {version = "0.13.2", path = "../metadata"}
52+
veryl-parser = {version = "0.13.2", path = "../parser"}
53+
veryl-path = {version = "0.13.2", path = "../path"}
54+
veryl-sourcemap = {version = "0.13.2", path = "../sourcemap"}

support/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-veryl",
33
"displayName": "Veryl",
44
"description": "Veryl extension for Visual Studio Code",
5-
"version": "0.13.1",
5+
"version": "0.13.2",
66
"publisher": "dalance",
77
"icon": "veryl_icon.png",
88
"galleryBanner": {

0 commit comments

Comments
 (0)