Skip to content

Commit c77e716

Browse files
build: bump version to 0.14.16 (#2474)
+tag v0.14.16
1 parent 79b6200 commit c77e716

8 files changed

Lines changed: 21 additions & 21 deletions

File tree

Cargo.toml

Lines changed: 11 additions & 11 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.16-rc1"
4+
version = "0.14.16"
55
edition = "2024"
66
readme = "README.md"
77
license = "Apache-2.0"
@@ -226,16 +226,16 @@ typst-shim = { path = "./crates/typst-shim", version = "0.14.6" }
226226

227227
tinymist-tests = { path = "./crates/tinymist-tests/" }
228228

229-
sync-ls = { path = "./crates/sync-lsp", version = "0.14.16-rc1" }
230-
tinymist = { path = "./crates/tinymist/", version = "0.14.16-rc1", default-features = false }
231-
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.14.16-rc1" }
232-
tinymist-cli = { path = "./crates/tinymist-cli/", version = "0.14.16-rc1" }
233-
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.14.16-rc1" }
234-
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.14.16-rc1" }
235-
tinymist-query = { path = "./crates/tinymist-query/", version = "0.14.16-rc1" }
236-
tinymist-render = { path = "./crates/tinymist-render/", version = "0.14.16-rc1" }
237-
tinymist-preview = { path = "./crates/typst-preview", version = "0.14.16-rc1" }
238-
typlite = { path = "./crates/typlite", version = "0.14.16-rc1", default-features = false }
229+
sync-ls = { path = "./crates/sync-lsp", version = "0.14.16" }
230+
tinymist = { path = "./crates/tinymist/", version = "0.14.16", default-features = false }
231+
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.14.16" }
232+
tinymist-cli = { path = "./crates/tinymist-cli/", version = "0.14.16" }
233+
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.14.16" }
234+
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.14.16" }
235+
tinymist-query = { path = "./crates/tinymist-query/", version = "0.14.16" }
236+
tinymist-render = { path = "./crates/tinymist-render/", version = "0.14.16" }
237+
tinymist-preview = { path = "./crates/typst-preview", version = "0.14.16" }
238+
typlite = { path = "./crates/typlite", version = "0.14.16", default-features = false }
239239

240240
cmark-writer = { path = "crates/cmark-writer", version = "0.9.0", features = [
241241
"gfm",

contrib/html/editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinymist-vscode-html",
3-
"version": "0.14.16-rc1",
3+
"version": "0.14.16",
44
"description": "Extending Typst with HTML features",
55
"keywords": [
66
"html",

crates/tinymist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinymist-web",
3-
"version": "0.14.16-rc1",
3+
"version": "0.14.16",
44
"description": "WASM module for running tinymist analyzers in JavaScript environment.",
55
"author": "Myriad-Dreamin",
66
"license": "Apache-2.0",

crates/typlite/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Converts a subset of typst to markdown.
88
### Install prebuilt binaries via shell script
99

1010
```sh
11-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/Myriad-Dreamin/tinymist/releases/download/v0.14.16-rc1/typlite-installer.sh | sh
11+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/Myriad-Dreamin/tinymist/releases/download/v0.14.16/typlite-installer.sh | sh
1212
```
1313

1414
### Install prebuilt binaries via powershell script
1515

1616
```ps1
17-
powershell -ExecutionPolicy Bypass -c "irm https://github.com/Myriad-Dreamin/tinymist/releases/download/v0.14.16-rc1/typlite-installer.ps1 | iex"
17+
powershell -ExecutionPolicy Bypass -c "irm https://github.com/Myriad-Dreamin/tinymist/releases/download/v0.14.16/typlite-installer.ps1 | iex"
1818
```
1919

2020
## Usage

editors/neovim/bootstrap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ else
1414
exit 1
1515
fi
1616

17-
(cd ../.. && docker build -t myriaddreamin/tinymist:0.14.16-rc1 .)
18-
(cd samples && docker build -t myriaddreamin/tinymist-nvim:0.14.16-rc1 -f lazyvim-dev/Dockerfile .)
17+
(cd ../.. && docker build -t myriaddreamin/tinymist:0.14.16 .)
18+
(cd samples && docker build -t myriaddreamin/tinymist-nvim:0.14.16 -f lazyvim-dev/Dockerfile .)
1919
docker run --rm -it \
2020
-v $PWD/../../tests/workspaces:/home/runner/dev/workspaces \
2121
-v $PWD:/home/runner/dev \
2222
-v $PWD/target/.local:/home/runner/.local \
2323
-v $PWD/target/.cache:/home/runner/.cache \
24-
-w /home/runner/dev myriaddreamin/tinymist-nvim:0.14.16-rc1 \
24+
-w /home/runner/dev myriaddreamin/tinymist-nvim:0.14.16 \
2525
$DOCKER_ARGS

editors/neovim/samples/lazyvim-dev/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN git clone --filter=blob:none --branch stable https://github.com/neovim/neovi
1515
USER root
1616
RUN cd neovim/build && cpack -G DEB && dpkg -i nvim-linux-x86_64.deb
1717

18-
FROM myriaddreamin/tinymist:0.14.16-rc1 as tinymist
18+
FROM myriaddreamin/tinymist:0.14.16 as tinymist
1919

2020
FROM debian:12
2121

editors/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinymist",
3-
"version": "0.14.16-rc1",
3+
"version": "0.14.16",
44
"description": "%description%",
55
"keywords": [
66
"typst",

syntaxes/textmate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typst-textmate",
3-
"version": "0.14.16-rc1",
3+
"version": "0.14.16",
44
"private": true,
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)