Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump version to 0.11.17-rc1 #468

Merged
merged 7 commits into from
Jul 27, 2024
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
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ To run analyzer tests for tinymist:
cargo insta test -p tinymist-query --accept
```

> [!Tip]
> Check [Cargo Insta](https://insta.rs/docs/cli/) to learn and install the `insta` command.

## Running E2E Tests

This is required if you have changed any code in `crates/tinymist` or `crates/tinymist-query`.
Expand Down
24 changes: 12 additions & 12 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.11.16"
version = "0.11.17-rc1"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -133,7 +133,7 @@ insta = { version = "1.39", features = ["glob"] }

# Our Own Crates
typst-preview = { path = "./crates/typst-preview/" }
tinymist-assets = { version = "0.11.16" }
tinymist-assets = { version = "0.11.17-rc1" }
tinymist = { path = "./crates/tinymist/" }
tinymist-query = { path = "./crates/tinymist-query/" }
tinymist-render = { path = "./crates/tinymist-render/" }
Expand Down
38 changes: 38 additions & 0 deletions editors/vscode/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,44 @@ 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.17 - [2024-07-27]

### Editor

* Added a `$(file-pdf)` icon for `showPdf` to navigation bar in https://github.com/Myriad-Dreamin/tinymist/pull/462
* It is a shorter way to export and open documents as PDF.
* It now has a different icon from the `preview` command.
* Note: This function is suitable to help perform your final checks to documents. For previewing, please uses `preview` command for better experience.
* Interned vscode-variable package in https://github.com/Myriad-Dreamin/tinymist/pull/460
* Fixed some bugs in the vscode-variable package.
* Improving the performance of replacing variables a bit.

### Compiler

* (Fix) Processing lagged compile reason in https://github.com/Myriad-Dreamin/tinymist/pull/456
* Causing last key strokes not being processed correctly.

### Preview

* Modified static host to send Content-Type: text/html by @cskeeters in https://github.com/Myriad-Dreamin/tinymist/pull/465
* Causing that GitHub Codespaces and the browser just showed the text of the HTML.

### Completion

* Supported querying label with paper name in bib items by @kririae in https://github.com/Myriad-Dreamin/tinymist/pull/365
* Added documentation about completion in https://github.com/Myriad-Dreamin/tinymist/pull/466

### Syntax/Semantic Highlighting

* Added syntax highlighting for raw blocks in https://github.com/Myriad-Dreamin/tinymist/pull/450
* To ensure 100% correctness of grammar, only the raw block with number fence ticks less than 6 is highlighted.

### Misc

* Handling unwrap for the args in compile command by @upsidedownsweetfood in https://github.com/Myriad-Dreamin/tinymist/pull/445

**Full Changelog**: https://github.com/Myriad-Dreamin/tinymist/compare/v0.11.16...v0.11.17

## v0.11.16 - [2024-07-20]

* Adding editor-side e2e testing in https://github.com/Myriad-Dreamin/tinymist/pull/441 and https://github.com/Myriad-Dreamin/tinymist/pull/442
Expand Down
Loading
Loading