fix: bump version to 0.12.0-rc1 (real) (#710)

* test: update snapshot

* fix: actually bump to 0.12.0-rc1
This commit is contained in:
Myriad-Dreamin 2024-10-19 23:03:10 +08:00 committed by GitHub
parent 66fff06dfe
commit ff535a1924
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 40 additions and 28 deletions

38
Cargo.lock generated
View file

@ -420,9 +420,9 @@ dependencies = [
[[package]]
name = "cc"
version = "1.1.30"
version = "1.1.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b16803a61b81d9eabb7eae2588776c4c1e584b738ede45fdbb4c972cec1e9945"
checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
dependencies = [
"shlex",
]
@ -3894,7 +3894,7 @@ dependencies = [
[[package]]
name = "sync-lsp"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"anyhow",
"clap",
@ -4043,7 +4043,7 @@ dependencies = [
[[package]]
name = "tests"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"insta",
"lsp-server",
@ -4146,7 +4146,7 @@ dependencies = [
[[package]]
name = "tinymist"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"anyhow",
"async-trait",
@ -4186,7 +4186,7 @@ dependencies = [
"serde_json",
"serde_yaml",
"sync-lsp",
"tinymist-assets 0.11.34-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-assets 0.12.0-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-query",
"tinymist-render",
"tinymist-world",
@ -4212,7 +4212,7 @@ dependencies = [
[[package]]
name = "tinymist-analysis"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"base64 0.22.1",
"comemo 0.4.0",
@ -4229,17 +4229,17 @@ dependencies = [
[[package]]
name = "tinymist-assets"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
[[package]]
name = "tinymist-assets"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6789da5ff45413ee8e72cfc6b250eb38a1ab377e62279e991abe4f5d8ceebe2d"
checksum = "4ed4c8b11b22ae4d2d371262d6eb41a1e021c97c1f49eb32fbf17fbf0ac01a70"
[[package]]
name = "tinymist-derive"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"quote",
"syn 2.0.79",
@ -4247,7 +4247,7 @@ dependencies = [
[[package]]
name = "tinymist-query"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"anyhow",
"base64 0.22.1",
@ -4299,7 +4299,7 @@ dependencies = [
[[package]]
name = "tinymist-render"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"base64 0.22.1",
"log",
@ -4310,7 +4310,7 @@ dependencies = [
[[package]]
name = "tinymist-world"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"anyhow",
"chrono",
@ -4326,7 +4326,7 @@ dependencies = [
"serde",
"serde_json",
"tar",
"tinymist-assets 0.11.34-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-assets 0.12.0-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"typst",
"typst-assets",
]
@ -4620,7 +4620,7 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "typlite"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"base64 0.22.1",
"comemo 0.4.0",
@ -4773,7 +4773,7 @@ dependencies = [
[[package]]
name = "typst-preview"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"clap",
"comemo 0.4.0",
@ -4786,7 +4786,7 @@ dependencies = [
"reflexo-vec2svg",
"serde",
"serde_json",
"tinymist-assets 0.11.34-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tinymist-assets 0.12.0-rc1 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio",
"typst",
"typst-assets",
@ -4813,7 +4813,7 @@ dependencies = [
[[package]]
name = "typst-shim"
version = "0.11.34-rc1"
version = "0.12.0-rc1"
dependencies = [
"cfg-if",
"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.34-rc1"
version = "0.12.0-rc1"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
@ -143,7 +143,7 @@ insta = { version = "1.39", features = ["glob"] }
# Our Own Crates
typst-preview = { path = "./crates/typst-preview" }
tinymist-assets = { version = "0.11.34-rc1" }
tinymist-assets = { version = "0.12.0-rc1" }
tinymist = { path = "./crates/tinymist/" }
tinymist-derive = { path = "./crates/tinymist-derive/" }
tinymist-analysis = { path = "./crates/tinymist-analysis/" }

File diff suppressed because one or more lines are too long

View file

@ -3,8 +3,15 @@ source: crates/tinymist-query/src/analysis.rs
expression: result
input_file: crates/tinymist-query/src/fixtures/type_check/annotation_var.typ
---
"f" = Any
"mapper" = (Type(function) | (Any, Any) => Any)
"x" = Any
"x" = Any
"y" = Any
---
56..62 -> @mapper
66..67 -> @x
69..70 -> @f
75..76 -> @x
75..83 -> Any
81..82 -> @f

View file

@ -4,12 +4,17 @@ expression: result
input_file: crates/tinymist-query/src/fixtures/type_check/tuple_map.typ
---
"a" = (1, )
"b" = (Any, )
"f" = Undef
"b" = (Type(string), )
"f" = (( ⪯ (Type(bytes) | Type(decimal) | Type(float) | Type(integer) | Type(label) | Type(string) | Type(type) | Type(version)))) => Type(string)
"x" = Any
---
5..6 -> @a
20..21 -> @f
24..25 -> @x
29..32 -> Type(string)
29..35 -> Type(string)
33..34 -> @x
42..43 -> @b
46..47 -> @a
46..54 -> (Any, )
46..54 -> (Type(string), )
52..53 -> @f

View file

@ -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.11.34 - [2024-10-19]
## v0.12.0 - [2024-10-19]
### Document Link

View file

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

View file

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