Skip to content

Commit b44fce6

Browse files
committed
chore: Release
1 parent d74ca5b commit b44fce6

File tree

17 files changed

+75
-75
lines changed

17 files changed

+75
-75
lines changed

Cargo.lock

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

crates/aligner/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-aligner"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -11,4 +11,4 @@ description.workspace = true
1111
edition.workspace = true
1212

1313
[dependencies]
14-
veryl-parser = {version = "0.16.0", path = "../parser"}
14+
veryl-parser = {version = "0.16.1", path = "../parser"}

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.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -19,8 +19,8 @@ log = {workspace = true}
1919
smallvec = {workspace = true}
2020
strnum_bitwidth = {workspace = true}
2121
thiserror = {workspace = true}
22-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
23-
veryl-parser = {version = "0.16.0", path = "../parser"}
22+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
23+
veryl-parser = {version = "0.16.1", path = "../parser"}
2424
daggy = "0.9.0"
2525
bimap = "0.6.3"
2626

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

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

crates/formatter/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-formatter"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -13,10 +13,10 @@ edition.workspace = true
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
veryl-aligner = {version = "0.16.0", path = "../aligner"}
17-
veryl-analyzer = {version = "0.16.0", path = "../analyzer"}
18-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
19-
veryl-parser = {version = "0.16.0", path = "../parser"}
16+
veryl-aligner = {version = "0.16.1", path = "../aligner"}
17+
veryl-analyzer = {version = "0.16.1", path = "../analyzer"}
18+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
19+
veryl-parser = {version = "0.16.1", path = "../parser"}
2020

2121
[dev-dependencies]
2222
toml = {workspace = true}

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.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -26,8 +26,8 @@ ntest = "0.9.3"
2626
serde_json = {workspace = true}
2727
tokio = {workspace = true}
2828
tower-lsp-server = "0.21.1"
29-
veryl-analyzer = {version = "0.16.0", path = "../analyzer"}
30-
veryl-formatter = {version = "0.16.0", path = "../formatter"}
31-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
32-
veryl-parser = {version = "0.16.0", path = "../parser"}
33-
veryl-path = {version = "0.16.0", path = "../path"}
29+
veryl-analyzer = {version = "0.16.1", path = "../analyzer"}
30+
veryl-formatter = {version = "0.16.1", path = "../formatter"}
31+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
32+
veryl-parser = {version = "0.16.1", path = "../parser"}
33+
veryl-path = {version = "0.16.1", 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.16.0"
3+
version = "0.16.1"
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.16.0", path = "../analyzer"}
27-
veryl-formatter = {version = "0.16.0", path = "../formatter"}
28-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
29-
veryl-parser = {version = "0.16.0", path = "../parser"}
26+
veryl-analyzer = {version = "0.16.1", path = "../analyzer"}
27+
veryl-formatter = {version = "0.16.1", path = "../formatter"}
28+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
29+
veryl-parser = {version = "0.16.1", 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.16.0"
3+
version = "0.16.1"
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.17", default-features = false, features = ["v5", "serde"]}
28-
veryl-parser = {version = "0.16.0", path = "../parser"}
29-
veryl-path = {version = "0.16.0", path = "../path"}
30-
veryl-std = {version = "0.16.0", path = "../std"}
28+
veryl-parser = {version = "0.16.1", path = "../parser"}
29+
veryl-path = {version = "0.16.1", path = "../path"}
30+
veryl-std = {version = "0.16.1", path = "../std"}
3131
walkdir = {workspace = true}
3232

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

crates/migrator/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-migrator"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -21,8 +21,8 @@ parol_runtime = {version = "3.0", features = ["regex_automata"], default-featur
2121
paste = "1.0"
2222
regex = {workspace = true}
2323
thiserror = {workspace = true}
24-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
25-
veryl-parser = {version = "0.16.0", path = "../parser"}
24+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
25+
veryl-parser = {version = "0.16.1", path = "../parser"}
2626

2727
[target.'cfg(target_arch = "wasm32")'.dependencies]
2828
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.16.0"
3+
version = "0.16.1"
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.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true

crates/simulator/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-simulator"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -12,7 +12,7 @@ edition.workspace = true
1212

1313
[dependencies]
1414
toml = {workspace = true}
15-
veryl-analyzer = {version = "0.16.0", path = "../analyzer"}
16-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
17-
veryl-parser = {version = "0.16.0", path = "../parser"}
18-
veryl-path = {version = "0.16.0", path = "../path"}
15+
veryl-analyzer = {version = "0.16.1", path = "../analyzer"}
16+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
17+
veryl-parser = {version = "0.16.1", path = "../parser"}
18+
veryl-path = {version = "0.16.1", path = "../path"}

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

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

crates/tests/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ license.workspace = true
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
veryl-analyzer = {version = "0.16.0", path = "../analyzer"}
11-
veryl-emitter = {version = "0.16.0", path = "../emitter"}
12-
veryl-formatter = {version = "0.16.0", path = "../formatter"}
13-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
14-
veryl-parser = {version = "0.16.0", path = "../parser"}
15-
veryl-path = {version = "0.16.0", path = "../path"}
16-
veryl = {version = "0.16.0", path = "../veryl"}
10+
veryl-analyzer = {version = "0.16.1", path = "../analyzer"}
11+
veryl-emitter = {version = "0.16.1", path = "../emitter"}
12+
veryl-formatter = {version = "0.16.1", path = "../formatter"}
13+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
14+
veryl-parser = {version = "0.16.1", path = "../parser"}
15+
veryl-path = {version = "0.16.1", path = "../path"}
16+
veryl = {version = "0.16.1", path = "../veryl"}
1717

1818
[dev-dependencies]
1919
criterion = {package = "codspeed-criterion-compat", version = "2.7"}

crates/veryl/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "veryl"
3-
version = "0.16.0"
3+
version = "0.16.1"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true
@@ -41,11 +41,11 @@ tempfile = {workspace = true}
4141
thiserror = {workspace = true}
4242
tokio = {workspace = true}
4343
tokio-util = "0.7.15"
44-
veryl-analyzer = {version = "0.16.0", path = "../analyzer"}
45-
veryl-emitter = {version = "0.16.0", path = "../emitter"}
46-
veryl-formatter = {version = "0.16.0", path = "../formatter"}
47-
veryl-metadata = {version = "0.16.0", path = "../metadata"}
48-
veryl-migrator = {version = "0.16.0", path = "../migrator"}
49-
veryl-parser = {version = "0.16.0", path = "../parser"}
50-
veryl-path = {version = "0.16.0", path = "../path"}
51-
veryl-sourcemap = {version = "0.16.0", path = "../sourcemap"}
44+
veryl-analyzer = {version = "0.16.1", path = "../analyzer"}
45+
veryl-emitter = {version = "0.16.1", path = "../emitter"}
46+
veryl-formatter = {version = "0.16.1", path = "../formatter"}
47+
veryl-metadata = {version = "0.16.1", path = "../metadata"}
48+
veryl-migrator = {version = "0.16.1", path = "../migrator"}
49+
veryl-parser = {version = "0.16.1", path = "../parser"}
50+
veryl-path = {version = "0.16.1", path = "../path"}
51+
veryl-sourcemap = {version = "0.16.1", path = "../sourcemap"}

0 commit comments

Comments
 (0)