build: bump version to 0.13.14-rc1 (#1793)

* build: bump version to 0.13.14-rc1

* docs: draft changelog

* docs: finish changelog

* docs: add co-author
This commit is contained in:
Myriad-Dreamin 2025-06-09 07:21:25 +08:00 committed by GitHub
parent c85247a85c
commit ed3704b0a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 97 additions and 40 deletions

46
Cargo.lock generated
View file

@ -758,7 +758,7 @@ dependencies = [
[[package]]
name = "crityp"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"anyhow",
"base64",
@ -3787,7 +3787,7 @@ dependencies = [
[[package]]
name = "sync-ls"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"anyhow",
"clap",
@ -3916,7 +3916,7 @@ dependencies = [
[[package]]
name = "tests"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"insta",
"lsp-types",
@ -4039,7 +4039,7 @@ dependencies = [
[[package]]
name = "tinymist"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"anyhow",
"async-trait",
@ -4081,7 +4081,7 @@ dependencies = [
"strum",
"sync-ls",
"temp-env",
"tinymist-assets 0.13.12 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-assets 0.13.12",
"tinymist-core",
"tinymist-debug",
"tinymist-l10n",
@ -4113,7 +4113,7 @@ dependencies = [
[[package]]
name = "tinymist-analysis"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"comemo",
"dashmap",
@ -4144,19 +4144,19 @@ dependencies = [
"unscanny",
]
[[package]]
name = "tinymist-assets"
version = "0.13.12"
[[package]]
name = "tinymist-assets"
version = "0.13.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "795c9d6932d1184fb4400bdfa129c3f5d306b50311215472f3ca1e118d22bb33"
[[package]]
name = "tinymist-assets"
version = "0.13.14-rc1"
[[package]]
name = "tinymist-bench-font-load"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"divan",
"tinymist",
@ -4164,7 +4164,7 @@ dependencies = [
[[package]]
name = "tinymist-core"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"anyhow",
"cargo_metadata",
@ -4176,7 +4176,7 @@ dependencies = [
[[package]]
name = "tinymist-dap"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"base64",
"comemo",
@ -4195,7 +4195,7 @@ dependencies = [
[[package]]
name = "tinymist-debug"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"base64",
"comemo",
@ -4221,7 +4221,7 @@ dependencies = [
[[package]]
name = "tinymist-l10n"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"anyhow",
"clap",
@ -4235,7 +4235,7 @@ dependencies = [
[[package]]
name = "tinymist-lint"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"comemo",
"insta",
@ -4249,7 +4249,7 @@ dependencies = [
[[package]]
name = "tinymist-package"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"base64",
"comemo",
@ -4304,7 +4304,7 @@ dependencies = [
[[package]]
name = "tinymist-query"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"anyhow",
"base64",
@ -4358,7 +4358,7 @@ dependencies = [
[[package]]
name = "tinymist-render"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"base64",
"log",
@ -4441,7 +4441,7 @@ dependencies = [
[[package]]
name = "tinymist-tests"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"comemo",
"insta",
@ -4772,7 +4772,7 @@ checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
[[package]]
name = "typlite"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"base64",
"clap",
@ -4997,7 +4997,7 @@ dependencies = [
[[package]]
name = "typst-preview"
version = "0.13.12"
version = "0.13.14-rc1"
dependencies = [
"clap",
"comemo",
@ -5010,7 +5010,7 @@ dependencies = [
"reflexo-vec2svg",
"serde",
"serde_json",
"tinymist-assets 0.13.12 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-assets 0.13.12",
"tinymist-std",
"tokio",
"typst",

View file

@ -1,7 +1,7 @@
[workspace.package]
description = "An integrated language service for Typst."
authors = ["Myriad-Dreamin <camiyoru@gmail.com>", "Nathan Varner"]
version = "0.13.12"
version = "0.13.14-rc1"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
@ -198,17 +198,17 @@ typst-shim = { path = "./crates/typst-shim", version = "0.13.12" }
tinymist-tests = { path = "./crates/tinymist-tests/" }
tinymist = { path = "./crates/tinymist/", version = "0.13.12" }
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.13.12" }
tinymist-core = { path = "./crates/tinymist-core/", version = "0.13.12", default-features = false }
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.13.12" }
tinymist-l10n = { path = "./crates/tinymist-l10n/", version = "0.13.12" }
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.13.12" }
tinymist-package = { path = "./crates/tinymist-package/", version = "0.13.12" }
tinymist-query = { path = "./crates/tinymist-query/", version = "0.13.12" }
tinymist-render = { path = "./crates/tinymist-render/", version = "0.13.12" }
typlite = { path = "./crates/typlite", version = "0.13.12" }
typst-preview = { path = "./crates/typst-preview", version = "0.13.12" }
tinymist = { path = "./crates/tinymist/", version = "0.13.14-rc1" }
tinymist-analysis = { path = "./crates/tinymist-analysis/", version = "0.13.14-rc1" }
tinymist-core = { path = "./crates/tinymist-core/", version = "0.13.14-rc1", default-features = false }
tinymist-debug = { path = "./crates/tinymist-debug/", version = "0.13.14-rc1" }
tinymist-l10n = { path = "./crates/tinymist-l10n/", version = "0.13.14-rc1" }
tinymist-lint = { path = "./crates/tinymist-lint/", version = "0.13.14-rc1" }
tinymist-package = { path = "./crates/tinymist-package/", version = "0.13.14-rc1" }
tinymist-query = { path = "./crates/tinymist-query/", version = "0.13.14-rc1" }
tinymist-render = { path = "./crates/tinymist-render/", version = "0.13.14-rc1" }
typlite = { path = "./crates/typlite", version = "0.13.14-rc1" }
typst-preview = { path = "./crates/typst-preview", version = "0.13.14-rc1" }
[profile.dev.package.insta]
opt-level = 3

View file

@ -1,6 +1,6 @@
{
"name": "tinymist-vscode-html",
"version": "0.13.12",
"version": "0.13.14-rc1",
"description": "Extending Typst with HTML features",
"keywords": [
"html",

View file

@ -1,6 +1,6 @@
{
"name": "tinymist-web",
"version": "0.13.12",
"version": "0.13.14-rc1",
"description": "WASM module for running tinymist analyzers in JavaScript environment.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",

View file

@ -6,10 +6,67 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
The changelog lines unspecified with authors are all written by the @Myriad-Dreamin.
## v0.13.14 - [2025-05-31]
## v0.13.14 - [2025-06-08]
* Bumped MSRV to v1.85 in https://github.com/Myriad-Dreamin/tinymist/pull/1683
* Bumped typstyle from 0.13.3 to v0.13.9. This version includes few significant changes. For more details, see https://enter-tainer.github.io/typstyle/changelog/#v0139---2025-05-25
* feat: bump typstyle to v0.13.9 and add config for hard wrap by @Enter-tainer in https://github.com/Myriad-Dreamin/tinymist/pull/1737
### Editor
* Added command to profile the entire server in https://github.com/Myriad-Dreamin/tinymist/pull/1438
### Compiler
* (Fix) Fixed a panic when getting font index which is hit by comemo again (#1213, #1645) in https://github.com/Myriad-Dreamin/tinymist/pull/1790
### Code Analysis
* Added path conversion actions for absolute and relative paths by @BlueQuantumx in https://github.com/Myriad-Dreamin/tinymist/pull/1696
* Re-identifying ref colon syntax and perform IDE operations in https://github.com/Myriad-Dreamin/tinymist/pull/1735
### Typlite
* (Test) Using snapshot testing and added more cases in https://github.com/Myriad-Dreamin/tinymist/pull/1717 and https://github.com/Myriad-Dreamin/tinymist/pull/1719
* Reimplemented typlite by html export by @hongjr03 and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/1684, https://github.com/Myriad-Dreamin/tinymist/pull/1720, https://github.com/Myriad-Dreamin/tinymist/pull/1728, https://github.com/Myriad-Dreamin/tinymist/pull/1729, https://github.com/Myriad-Dreamin/tinymist/pull/1754, https://github.com/Myriad-Dreamin/tinymist/pull/1758, https://github.com/Myriad-Dreamin/tinymist/pull/1759, https://github.com/Myriad-Dreamin/tinymist/pull/1762, https://github.com/Myriad-Dreamin/tinymist/pull/1779, https://github.com/Myriad-Dreamin/tinymist/pull/1767, https://github.com/Myriad-Dreamin/tinymist/pull/1771, and https://github.com/Myriad-Dreamin/tinymist/pull/1772
* Supporting LaTeX export by @hongjr03 and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/1718
* Supporting Docx export by @hongjr03 and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/1727
* Supporting Text output support by @hongjr03 and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/1731
* Printing diagnostics in https://github.com/Myriad-Dreamin/tinymist/pull/1753
### Code Action
* Autofixing `unknown variable: a` and `file not found (searched at a.typ)` by code action in https://github.com/Myriad-Dreamin/tinymist/pull/1743
### Completion
* (Fix) Escaping snippet syntax in the completing code in https://github.com/Myriad-Dreamin/tinymist/pull/1741
* Completing function docs generation only if the next line is a function definition in https://github.com/Myriad-Dreamin/tinymist/pull/1740
### Signature Help
* Forbidding signature help in some cases in https://github.com/Myriad-Dreamin/tinymist/pull/1742
### Docstring
* (Fix) Counting dedent of the empty comment lines correctly in https://github.com/Myriad-Dreamin/tinymist/pull/1690
### Syntax/Semantic Highlighting
* (Fix) Stopping parsing markup call before math dollar by @sjfhsjfh in https://github.com/Myriad-Dreamin/tinymist/pull/1752
* (Fix) Terminating many expressions before dollar in https://github.com/Myriad-Dreamin/tinymist/pull/1755
* (Fix) Stopping hash expressions before "operators" in https://github.com/Myriad-Dreamin/tinymist/pull/1756
### Preview
* Triggering scroll only when selection is not adjacent in https://github.com/Myriad-Dreamin/tinymist/pull/1787
### Misc
* Rearranging and testing dependency meta in https://github.com/Myriad-Dreamin/tinymist/pull/1760
* (Fix) Corrected link to Automattic/haper in https://github.com/Myriad-Dreamin/tinymist/pull/1748
**Full Changelog**: https://github.com/Myriad-Dreamin/tinymist/compare/v0.13.12...v0.13.14
## v0.13.12 - [2025-04-30]

View file

@ -1,6 +1,6 @@
{
"name": "tinymist",
"version": "0.13.12",
"version": "0.13.14-rc1",
"description": "%description%",
"keywords": [
"typst",

View file

@ -1,6 +1,6 @@
{
"name": "typst-textmate",
"version": "0.13.12",
"version": "0.13.14-rc1",
"private": true,
"scripts": {
"compile": "npx tsc && node ./dist/main.mjs",