build: bump version to 0.11.20-rc1 (#563)

* docs: update changelog

* build: bump version to 0.11.20-rc1
This commit is contained in:
Myriad-Dreamin 2024-08-26 21:58:16 +08:00 committed by GitHub
parent 5396c270c1
commit 0c2d06969c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 68 additions and 17 deletions

30
Cargo.lock generated
View file

@ -3536,7 +3536,7 @@ dependencies = [
[[package]]
name = "sync-lsp"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"anyhow",
"clap",
@ -3675,7 +3675,7 @@ dependencies = [
[[package]]
name = "tests"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"insta",
"lsp-server",
@ -3772,7 +3772,7 @@ dependencies = [
[[package]]
name = "tinymist"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"anyhow",
"async-trait",
@ -3808,7 +3808,7 @@ dependencies = [
"serde_json",
"serde_yaml",
"sync-lsp",
"tinymist-assets",
"tinymist-assets 0.11.20-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-query",
"tinymist-render",
"tinymist-world",
@ -3835,11 +3835,17 @@ dependencies = [
[[package]]
name = "tinymist-assets"
version = "0.11.19"
version = "0.11.20-rc1"
[[package]]
name = "tinymist-assets"
version = "0.11.20-rc1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d949aaf604376457928f45d19e2bc8663a13318c4989c8dce6b0a70eb880dba4"
[[package]]
name = "tinymist-query"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"anyhow",
"biblatex",
@ -3884,7 +3890,7 @@ dependencies = [
[[package]]
name = "tinymist-render"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"base64 0.22.1",
"log",
@ -3895,7 +3901,7 @@ dependencies = [
[[package]]
name = "tinymist-world"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"anyhow",
"chrono",
@ -3905,7 +3911,7 @@ dependencies = [
"reflexo-typst",
"serde",
"serde_json",
"tinymist-assets",
"tinymist-assets 0.11.20-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"typst-assets",
]
@ -4175,7 +4181,7 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "typlite"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"base64 0.22.1",
"comemo 0.4.0",
@ -4318,7 +4324,7 @@ dependencies = [
[[package]]
name = "typst-preview"
version = "0.11.19"
version = "0.11.20-rc1"
dependencies = [
"clap",
"comemo 0.4.0",
@ -4331,7 +4337,7 @@ dependencies = [
"reflexo-vec2svg",
"serde",
"serde_json",
"tinymist-assets",
"tinymist-assets 0.11.20-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio",
"tokio-tungstenite",
"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.11.19"
version = "0.11.20-rc1"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
@ -135,7 +135,7 @@ insta = { version = "1.39", features = ["glob"] }
# Our Own Crates
typst-preview = { path = "./crates/typst-preview/" }
tinymist-assets = { version = "0.11.19" }
tinymist-assets = { version = "0.11.20-rc1" }
tinymist = { path = "./crates/tinymist/" }
tinymist-query = { path = "./crates/tinymist-query/" }
tinymist-world = { path = "./crates/tinymist-world/" }
@ -168,7 +168,7 @@ undocumented_unsafe_blocks = "warn"
[patch.crates-io]
tinymist-assets = { path = "./crates/tinymist-assets/" }
# tinymist-assets = { path = "./crates/tinymist-assets/" }
typst = { git = "https://github.com/Myriad-Dreamin/typst.git", tag = "tinymist-v0.11.1-2" }
typst-timing = { git = "https://github.com/Myriad-Dreamin/typst.git", tag = "tinymist-v0.11.1-2" }

View file

@ -4,6 +4,51 @@ All notable changes to the "tinymist" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## v0.11.20 - [2024-08-26]
* chore: bump typstyle to v0.11.32 by @Enter-tainer in https://github.com/Myriad-Dreamin/tinymist/pull/551
* build: bump typst.ts to v0.5.0-rc7 in https://github.com/Myriad-Dreamin/tinymist/pull/554
## Compiler
* dev: perform simple rate limit on heavy dynamic analysis in https://github.com/Myriad-Dreamin/tinymist/pull/532
## Editor
* feat: export text in range as ansi highlighted code in https://github.com/Myriad-Dreamin/tinymist/pull/526 and https://github.com/Myriad-Dreamin/tinymist/pull/544
## Preview
* feat: remove useless `tinymist.preview.showInActivityBar` in https://github.com/Myriad-Dreamin/tinymist/pull/543
## Hover (Tooltip)
* fix: remove feature texmath by @Eric-Song-Nop in https://github.com/Myriad-Dreamin/tinymist/pull/535
## Goto Definition
* test: add test for `goto_definition` for label by @Eric-Song-Nop in https://github.com/Myriad-Dreamin/tinymist/pull/510
## References
* feat: find references for `Ref` and `Label` by @Eric-Song-Nop in https://github.com/Myriad-Dreamin/tinymist/pull/527
### Syntax/Semantic Highlighting
* fix: parse dot issue 492 again in https://github.com/Myriad-Dreamin/tinymist/pull/557
* feat: improve numeric literal parsers in https://github.com/Myriad-Dreamin/tinymist/pull/558
* fix: parse quotes near the atomic hash expression in https://github.com/Myriad-Dreamin/tinymist/pull/559
## Misc
* feat: generate shell completion by @Eric-Song-Nop in https://github.com/Myriad-Dreamin/tinymist/pull/525
* docs: add installation and configuration instruction for Emacs by @Ziqi-Yang in https://github.com/Myriad-Dreamin/tinymist/pull/538
* docs: add document preview feature documentations for non-vscode clients in https://github.com/Myriad-Dreamin/tinymist/pull/560
* docs: add root path hints for neovim users in https://github.com/Myriad-Dreamin/tinymist/pull/561
* docs: add notes to stateful pin commands in https://github.com/Myriad-Dreamin/tinymist/pull/562
**Full Changelog**: https://github.com/Myriad-Dreamin/tinymist/compare/v0.11.19...v0.11.20
## v0.11.19 - [2024-08-10]
* Bumped typstyle v0.11.31 by @Enter-tainer in https://github.com/Myriad-Dreamin/tinymist/pull/512

View file

@ -1,6 +1,6 @@
{
"name": "tinymist",
"version": "0.11.19",
"version": "0.11.20-rc1",
"description": "An integrated language service for Typst",
"categories": [
"Programming Languages",

View file

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