Skip to content

Commit

Permalink
build: bump version to 0.12.10-rc1 (#957)
Browse files Browse the repository at this point in the history
* docs: update changelog

* build: bump version to 0.12.10-rc1

* wording
  • Loading branch information
Myriad-Dreamin authored Dec 7, 2024
1 parent b73bafd commit 5dd9bad
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 21 deletions.
34 changes: 17 additions & 17 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.8"
version = "0.12.10-rc1"
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.8" }
tinymist-assets = { version = "0.12.10-rc1" }
tinymist = { path = "./crates/tinymist/" }
tinymist-derive = { path = "./crates/tinymist-derive/" }
tinymist-analysis = { path = "./crates/tinymist-analysis/" }
Expand Down
23 changes: 23 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@ 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.10 - [2024-12-07]

### Compiler

### Editor

* (Fix) Binding this context to `showLog` function in https://github.com/Myriad-Dreamin/tinymist/pull/951
* Otherwise, an undefined reference exception is thrown when showing logs.

### Code Analysis

* (Fix) Warning well-formed named parameters in docstring in https://github.com/Myriad-Dreamin/tinymist/pull/948
* There are potential bugs so there might be ill-formed named parameters and cause panics. We haven't fixed them but turn the panics into warnings.

### Completion

* Completing on import item paths by @Eric-Song-Nop and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/tinymist/pull/949
* The syntax was introduced in typst v0.12.0 which prevented all effective completions on import items.
* (Fix) Only completing import items on the same line of the associated module import in https://github.com/Myriad-Dreamin/tinymist/pull/952
* Otherwise, it completes import items when the cursor is at, for example, `#import "some.typ":\n|`.

**Full Changelog**: https://github.com/Myriad-Dreamin/tinymist/compare/v0.12.8...v0.12.10

## v0.12.8 - [2024-12-03]

v0.12.6 was wrongly released as v0.12.6-rc3. This release is to fix the version number.
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.8",
"version": "0.12.10-rc1",
"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.8",
"version": "0.12.10-rc1",
"private": true,
"scripts": {
"compile": "npx tsc && node ./dist/main.mjs",
Expand Down

0 comments on commit 5dd9bad

Please sign in to comment.