Skip to content

Commit f5c964b

Browse files
build: bump version to 0.14.6-rc2 (#2327)
+tag v0.14.6-rc2
1 parent 292d2f4 commit f5c964b

File tree

30 files changed

+961
-705
lines changed

30 files changed

+961
-705
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace.package]
22
description = "An integrated language service for Typst."
33
authors = ["Myriad-Dreamin <camiyoru@gmail.com>", "Nathan Varner"]
4-
version = "0.14.6-rc1"
4+
version = "0.14.6-rc2"
55
edition = "2024"
66
readme = "README.md"
77
license = "Apache-2.0"
@@ -35,31 +35,31 @@ tokio-util = { version = "0.7.16", features = ["compat"] }
3535

3636
# System
3737
battery = "0.7.8"
38-
temp-env = "0.3.6"
39-
open = { version = "5.3.2" }
40-
parking_lot = "0.12.1"
41-
walkdir = "2"
4238
chrono = { version = "0.4", default-features = false }
43-
time = "0.3"
39+
core-foundation = { version = "0.10.0", features = ["mac_os_10_7_support"] }
4440
dirs = "6"
4541
fontdb = { version = "0.23", default-features = false }
42+
half = "=2.6.0"
43+
libc = "0.2.155"
4644
notify = "6"
45+
open = { version = "5.3.2" }
46+
parking_lot = "0.12.1"
4747
path-clean = "1.0.1"
48-
windows-sys = "0.61.2"
49-
tempfile = "3.19.1"
5048
same-file = "1.0.6"
51-
libc = "0.2.155"
52-
core-foundation = { version = "0.10.0", features = ["mac_os_10_7_support"] }
53-
half = "=2.6.0"
49+
temp-env = "0.3.6"
50+
tempfile = "3.19.1"
51+
time = "0.3"
52+
walkdir = "2"
53+
windows-sys = "0.61.2"
5454

5555
# Web
56+
console_error_panic_hook = { version = "0.1.7" }
5657
js-sys = "^0.3"
5758
wasm-bindgen = "^0.2"
5859
wasm-bindgen-futures = "^0.4"
5960
wasm-bindgen-test = "0.3.45"
6061
web-sys = "^0.3"
6162
web-time = { version = "1.1.0" }
62-
console_error_panic_hook = { version = "0.1.7" }
6363

6464
# Networking
6565
hyper = { version = "1", features = ["full"] }
@@ -77,12 +77,12 @@ base64 = "0.22"
7777
regex = "1.12.2"
7878

7979
# Cryptography and data processing
80+
fastrand = "2.3.0"
81+
fxhash = "0.2.1"
82+
nohash-hasher = "0.2.0"
8083
rustc-hash = { version = "2", features = ["std"] }
8184
siphasher = "1"
82-
fxhash = "0.2.1"
8385
sha2 = "0.10.9"
84-
nohash-hasher = "0.2.0"
85-
fastrand = "2.3.0"
8686

8787
# Data Structures
8888
bitvec = "1"
@@ -165,8 +165,8 @@ typstyle-core = { version = "=0.14.0", default-features = false }
165165

166166
# LSP
167167
crossbeam-channel = "0.5.15"
168-
lsp-types = { version = "=0.95.0", features = ["proposed"] }
169168
dapts = "0.0.6"
169+
lsp-types = { version = "=0.95.0", features = ["proposed"] }
170170

171171
# CLI
172172
clap = { version = "4.5", features = ["derive", "env", "unicode"] }
@@ -191,7 +191,7 @@ insta-cmd = "0.6.0"
191191

192192

193193
# Our Own Crates
194-
tinymist-assets = { version = "=0.14.6-rc1" }
194+
tinymist-assets = { version = "=0.14.6-rc2" }
195195

196196
tinymist-derive = { path = "./crates/tinymist-derive/", version = "0.14.6-rc2" }
197197
tinymist-l10n = { path = "./crates/tinymist-l10n/", version = "0.14.6-rc2" }
@@ -205,16 +205,16 @@ typst-shim = { path = "./crates/typst-shim", version = "0.14.6-rc2" }
205205

206206
tinymist-tests = { path = "./crates/tinymist-tests/" }
207207

208-
sync-ls = { path = "./crates/sync-lsp", version = "0.14.6-rc1" }
209-
tinymist = { path = "./crates/tinymist/", version = "0.14.6-rc1", default-features = false }
210-
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.14.6-rc1" }
211-
tinymist-cli = { path = "./crates/tinymist-cli/", version = "0.14.6-rc1" }
212-
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.14.6-rc1" }
213-
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.14.6-rc1" }
214-
tinymist-query = { path = "./crates/tinymist-query/", version = "0.14.6-rc1" }
215-
tinymist-render = { path = "./crates/tinymist-render/", version = "0.14.6-rc1" }
216-
tinymist-preview = { path = "./crates/typst-preview", version = "0.14.6-rc1" }
217-
typlite = { path = "./crates/typlite", version = "0.14.6-rc1", default-features = false }
208+
sync-ls = { path = "./crates/sync-lsp", version = "0.14.6-rc2" }
209+
tinymist = { path = "./crates/tinymist/", version = "0.14.6-rc2", default-features = false }
210+
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.14.6-rc2" }
211+
tinymist-cli = { path = "./crates/tinymist-cli/", version = "0.14.6-rc2" }
212+
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.14.6-rc2" }
213+
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.14.6-rc2" }
214+
tinymist-query = { path = "./crates/tinymist-query/", version = "0.14.6-rc2" }
215+
tinymist-render = { path = "./crates/tinymist-render/", version = "0.14.6-rc2" }
216+
tinymist-preview = { path = "./crates/typst-preview", version = "0.14.6-rc2" }
217+
typlite = { path = "./crates/typlite", version = "0.14.6-rc2", default-features = false }
218218

219219
[profile.dev.package.insta]
220220
opt-level = 3
Lines changed: 12 additions & 18 deletions
Loading
Lines changed: 12 additions & 18 deletions
Loading

contrib/html/editors/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinymist-vscode-html",
3-
"version": "0.14.6-rc1",
3+
"version": "0.14.6-rc2",
44
"description": "Extending Typst with HTML features",
55
"keywords": [
66
"html",
@@ -77,4 +77,4 @@
7777
"ovsx": "^0.8.3",
7878
"vscode-html-languageservice": "^5.3.1"
7979
}
80-
}
80+
}

0 commit comments

Comments
 (0)