Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace.package]
description = "An integrated language service for Typst."
authors = ["Myriad-Dreamin <camiyoru@gmail.com>", "Nathan Varner"]
version = "0.14.14"
version = "0.14.16-rc1"
edition = "2024"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -212,7 +212,7 @@ insta = { version = "1.43", features = ["glob", "filters"] }
insta-cmd = "0.6.0"

# Our Own Crates
tinymist-assets = { version = "=0.14.14" }
tinymist-assets = { version = "=0.14.16-rc1" }

tinymist-derive = { path = "./crates/tinymist-derive/", version = "0.14.6" }
tinymist-l10n = { path = "./crates/tinymist-l10n/", version = "0.14.6" }
Expand All @@ -226,16 +226,16 @@ typst-shim = { path = "./crates/typst-shim", version = "0.14.6" }

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

sync-ls = { path = "./crates/sync-lsp", version = "0.14.14" }
tinymist = { path = "./crates/tinymist/", version = "0.14.14", default-features = false }
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.14.14" }
tinymist-cli = { path = "./crates/tinymist-cli/", version = "0.14.14" }
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.14.14" }
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.14.14" }
tinymist-query = { path = "./crates/tinymist-query/", version = "0.14.14" }
tinymist-render = { path = "./crates/tinymist-render/", version = "0.14.14" }
tinymist-preview = { path = "./crates/typst-preview", version = "0.14.14" }
typlite = { path = "./crates/typlite", version = "0.14.14", default-features = false }
sync-ls = { path = "./crates/sync-lsp", version = "0.14.16-rc1" }
tinymist = { path = "./crates/tinymist/", version = "0.14.16-rc1", default-features = false }
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.14.16-rc1" }
tinymist-cli = { path = "./crates/tinymist-cli/", version = "0.14.16-rc1" }
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.14.16-rc1" }
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.14.16-rc1" }
tinymist-query = { path = "./crates/tinymist-query/", version = "0.14.16-rc1" }
tinymist-render = { path = "./crates/tinymist-render/", version = "0.14.16-rc1" }
tinymist-preview = { path = "./crates/typst-preview", version = "0.14.16-rc1" }
typlite = { path = "./crates/typlite", version = "0.14.16-rc1", default-features = false }

cmark-writer = { path = "crates/cmark-writer", version = "0.9.0", features = [
"gfm",
Expand Down
2 changes: 1 addition & 1 deletion contrib/html/editors/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymist-vscode-html",
"version": "0.14.14",
"version": "0.14.16-rc1",
"description": "Extending Typst with HTML features",
"keywords": [
"html",
Expand Down
2 changes: 1 addition & 1 deletion crates/tinymist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymist-web",
"version": "0.14.14",
"version": "0.14.16-rc1",
"description": "WASM module for running tinymist analyzers in JavaScript environment.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions crates/typlite/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ Converts a subset of typst to markdown.
### Install prebuilt binaries via shell script

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

### Install prebuilt binaries via powershell script

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

## Usage
Expand Down
6 changes: 3 additions & 3 deletions editors/neovim/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ else
exit 1
fi

(cd ../.. && docker build -t myriaddreamin/tinymist:0.14.14 .)
(cd samples && docker build -t myriaddreamin/tinymist-nvim:0.14.14 -f lazyvim-dev/Dockerfile .)
(cd ../.. && docker build -t myriaddreamin/tinymist:0.14.16-rc1 .)
(cd samples && docker build -t myriaddreamin/tinymist-nvim:0.14.16-rc1 -f lazyvim-dev/Dockerfile .)
docker run --rm -it \
-v $PWD/../../tests/workspaces:/home/runner/dev/workspaces \
-v $PWD:/home/runner/dev \
-v $PWD/target/.local:/home/runner/.local \
-v $PWD/target/.cache:/home/runner/.cache \
-w /home/runner/dev myriaddreamin/tinymist-nvim:0.14.14 \
-w /home/runner/dev myriaddreamin/tinymist-nvim:0.14.16-rc1 \
$DOCKER_ARGS
2 changes: 1 addition & 1 deletion editors/neovim/samples/lazyvim-dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN git clone --filter=blob:none --branch stable https://github.com/neovim/neovi
USER root
RUN cd neovim/build && cpack -G DEB && dpkg -i nvim-linux-x86_64.deb

FROM myriaddreamin/tinymist:0.14.14 as tinymist
FROM myriaddreamin/tinymist:0.14.16-rc1 as tinymist

FROM debian:12

Expand Down
17 changes: 17 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@ The changelog lines unspecified with authors are all written by the @Myriad-Drea
- [CHANGELOG-2025.md](https://github.com/Myriad-Dreamin/tinymist/blob/main/CHANGELOG/CHANGELOG-2025.md)
- [CHANGELOG-2024.md](https://github.com/Myriad-Dreamin/tinymist/blob/main/CHANGELOG/CHANGELOG-2024.md)

## v0.14.16 - [2026-04-03]

### Completion

* (Fix) Used `label("...")` for incompatible citation keys while keeping `<key>` for compatible keys in https://github.com/Myriad-Dreamin/tinymist/pull/2464
* (Fix) Detected math code interpolation mode correctly for field and method completion in https://github.com/Myriad-Dreamin/tinymist/pull/2453

### Editor

* (Fix) Ignored malformed `tinymist.fontPaths` config values instead of crashing extension activation in https://github.com/Myriad-Dreamin/tinymist/pull/2446

### Rename

* (Fix) Correctly resolved `LinkTarget::Path` against the source file during rename and link updates by @BlueQuantumx and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/2368

**Full Changelog**: https://github.com/Myriad-Dreamin/tinymist/compare/v0.14.14...v0.14.16

## v0.14.14 - [2026-03-27]

### Preview
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymist",
"version": "0.14.14",
"version": "0.14.16-rc1",
"description": "%description%",
"keywords": [
"typst",
Expand Down
2 changes: 1 addition & 1 deletion syntaxes/textmate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typst-textmate",
"version": "0.14.14",
"version": "0.14.16-rc1",
"private": true,
"type": "module",
"scripts": {
Expand Down
Loading