Skip to content

Commit 56a6056

Browse files
committed
chore: Release
1 parent d803fc1 commit 56a6056

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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../parser"}
14+
veryl-parser = {version = "0.16.0", 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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../metadata"}
23-
veryl-parser = {version = "0.15.0", path = "../parser"}
22+
veryl-metadata = {version = "0.16.0", path = "../metadata"}
23+
veryl-parser = {version = "0.16.0", 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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../aligner"}
19-
veryl-analyzer = {version = "0.15.0", path = "../analyzer"}
20-
veryl-metadata = {version = "0.15.0", path = "../metadata"}
21-
veryl-parser = {version = "0.15.0", path = "../parser"}
22-
veryl-sourcemap = {version = "0.15.0", path = "../sourcemap"}
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"}
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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../aligner"}
17-
veryl-analyzer = {version = "0.15.0", path = "../analyzer"}
18-
veryl-metadata = {version = "0.15.0", path = "../metadata"}
19-
veryl-parser = {version = "0.15.0", path = "../parser"}
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"}
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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../analyzer"}
30-
veryl-formatter = {version = "0.15.0", path = "../formatter"}
31-
veryl-metadata = {version = "0.15.0", path = "../metadata"}
32-
veryl-parser = {version = "0.15.0", path = "../parser"}
33-
veryl-path = {version = "0.15.0", path = "../path"}
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"}

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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../analyzer"}
27-
veryl-formatter = {version = "0.15.0", path = "../formatter"}
28-
veryl-metadata = {version = "0.15.0", path = "../metadata"}
29-
veryl-parser = {version = "0.15.0", path = "../parser"}
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"}

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.15.0"
3+
version = "0.16.0"
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.16", default-features = false, features = ["v5", "serde"]}
28-
veryl-parser = {version = "0.15.0", path = "../parser"}
29-
veryl-path = {version = "0.15.0", path = "../path"}
30-
veryl-std = {version = "0.15.0", path = "../std"}
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"}
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.15.0"
3+
version = "0.16.0"
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.15.0", path = "../metadata"}
25-
veryl-parser = {version = "0.15.0", path = "../parser"}
24+
veryl-metadata = {version = "0.16.0", path = "../metadata"}
25+
veryl-parser = {version = "0.16.0", 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.15.0"
3+
version = "0.16.0"
44
authors.workspace = true
55
repository.workspace = true
66
keywords.workspace = true

0 commit comments

Comments
 (0)