Skip to content

Commit

Permalink
build: bump version to 0.12.6-rc3 (#938)
Browse files Browse the repository at this point in the history
* docs: update changelog

* build: bump version to 0.12.6-rc3
  • Loading branch information
Myriad-Dreamin authored Dec 3, 2024
1 parent c6fcfb4 commit 7efbaf3
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 28 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

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

4 changes: 2 additions & 2 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 <[email protected]>", "Nathan Varner"]
version = "0.12.6-rc2"
version = "0.12.6-rc3"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -145,7 +145,7 @@ insta = { version = "1.39", features = ["glob"] }

# Our Own Crates
typst-preview = { path = "./crates/typst-preview" }
tinymist-assets = { version = "0.12.6-rc2" }
tinymist-assets = { version = "0.12.6-rc3" }
tinymist = { path = "./crates/tinymist/" }
tinymist-derive = { path = "./crates/tinymist-derive/" }
tinymist-analysis = { path = "./crates/tinymist-analysis/" }
Expand Down
17 changes: 14 additions & 3 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.12.6 - [2024-12-02]
## v0.12.6 - [2024-12-03]

* Bumped typstyle to v0.12.6 by @Enter-tainer in https://github.com/Myriad-Dreamin/tinymist/pull/893, https://github.com/Myriad-Dreamin/tinymist/pull/904 and https://github.com/Myriad-Dreamin/tinymist/pull/928
* Comment formatting and code block formatting is improved. For details, see https://enter-tainer.github.io/typstyle/changelog/#v0125---2024-11-29
Expand All @@ -13,12 +13,23 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
### Compiler

* Added package related arguments to typstExtraArgs in https://github.com/Myriad-Dreamin/tinymist/pull/923
* Improved definition finder of builtin values and field accesses in https://github.com/Myriad-Dreamin/tinymist/pull/919 and https://github.com/Myriad-Dreamin/tinymist/pull/920
* Previously, tinymist cannot resolve definitions of items such as `math.equation` and `list.item`, so some functions did not work on them, like signature help or hover. Here, `math` is a builtin value. `list` is a element as well as a scope owning a `item` field (element).

### Editor

* Providing `tinymist.restartServer` command by @Eric-Song-Nop in https://github.com/Myriad-Dreamin/tinymist/pull/894
* Providing elementary font view in https://github.com/Myriad-Dreamin/tinymist/pull/932
* Implemented Search function in template gallery by @Eric-Song-Nop and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/922

### Code Analysis

* Improved definition finder of builtin values and field accesses in https://github.com/Myriad-Dreamin/tinymist/pull/919 and https://github.com/Myriad-Dreamin/tinymist/pull/920
* Previously, tinymist cannot resolve definitions of items such as `math.equation` and `list.item`, so some functions did not work on them, like signature help or hover. Here, `math` is a builtin value. `list` is a element as well as a scope owning a `item` field (element).
* Resolving constant references in import at syntax level in https://github.com/Myriad-Dreamin/tinymist/pull/933
* To solve wildcard imports like: `import cetz.draw: *`.
* Dynamically analyzing import source for wildcard imports in https://github.com/Myriad-Dreamin/tinymist/pull/935
* To solve more static imports like: `let draw = cetz.draw; import draw: *`.
* To solve more static imports like: `import ("draw" + ".typ"): *`.
* (Fix) Replaced two touched panics with `log::warn` in signature checker in https://github.com/Myriad-Dreamin/tinymist/pull/934

### 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.12.6-rc2",
"version": "0.12.6-rc3",
"description": "An integrated language service for Typst",
"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.12.6-rc2",
"version": "0.12.6-rc3",
"private": true,
"scripts": {
"compile": "npx tsc && node ./dist/main.mjs",
Expand Down

0 comments on commit 7efbaf3

Please sign in to comment.