diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 330fbde69..44ae2633e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -306,11 +306,22 @@ jobs: - name: Install deps run: yarn install - name: Deploy to VS Code Marketplace + if: "!contains(github.ref, 'rc')" run: npx @vscode/vsce publish --packagePath $(find . -type f -iname 'tinymist-*.vsix') --skip-duplicate env: VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} - - name: Deploy to OpenVSX + if: "!contains(github.ref, 'rc')" run: npx ovsx publish --packagePath $(find . -type f -iname 'tinymist-*.vsix') --skip-duplicate env: OVSX_PAT: ${{ secrets.OPENVSX_ACCESS_TOKEN }} + - name: Deploy to VS Code Marketplace (Pre Release) + if: contains(github.ref, 'rc') + run: npx @vscode/vsce publish --packagePath $(find . -type f -iname 'tinymist-*.vsix') --skip-duplicate --pre-release + env: + VSCE_PAT: ${{ secrets.VSCODE_MARKETPLACE_TOKEN }} + - name: Deploy to OpenVSX (Pre Release) + if: contains(github.ref, 'rc') + run: npx ovsx publish --packagePath $(find . -type f -iname 'tinymist-*.vsix') --skip-duplicate --pre-release + env: + OVSX_PAT: ${{ secrets.OPENVSX_ACCESS_TOKEN }} diff --git a/Cargo.lock b/Cargo.lock index c3f69efba..5f7843c63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3498,7 +3498,7 @@ dependencies = [ [[package]] name = "sync-lsp" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "anyhow", "clap", @@ -3637,7 +3637,7 @@ dependencies = [ [[package]] name = "tests" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "insta", "lsp-server", @@ -3734,7 +3734,7 @@ dependencies = [ [[package]] name = "tinymist" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "anyhow", "async-trait", @@ -3793,11 +3793,11 @@ dependencies = [ [[package]] name = "tinymist-assets" -version = "0.11.14" +version = "0.11.15-rc2" [[package]] name = "tinymist-query" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "anyhow", "biblatex", @@ -3842,7 +3842,7 @@ dependencies = [ [[package]] name = "tinymist-render" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "base64 0.22.1", "log", @@ -4117,7 +4117,7 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "typlite" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "insta", "typst-syntax 0.11.1", @@ -4228,7 +4228,7 @@ dependencies = [ [[package]] name = "typst-preview" -version = "0.11.14" +version = "0.11.15-rc2" dependencies = [ "clap", "comemo 0.4.0", diff --git a/Cargo.toml b/Cargo.toml index 792583bf8..7012e0a18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [workspace.package] description = "An integrated language service for Typst." authors = ["Myriad-Dreamin ", "Nathan Varner"] -version = "0.11.14" +version = "0.11.15-rc2" edition = "2021" readme = "README.md" license = "Apache-2.0" @@ -132,7 +132,7 @@ insta = { version = "1.39", features = ["glob"] } # Our Own Crates typst-preview = { path = "./crates/typst-preview/" } -tinymist-assets = { version = "0.11.14" } +tinymist-assets = { version = "0.11.15-rc2" } tinymist = { path = "./crates/tinymist/" } tinymist-query = { path = "./crates/tinymist-query/" } tinymist-render = { path = "./crates/tinymist-render/" } @@ -164,7 +164,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", branch = "tinymist-v0.11.1" } typst-timing = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "tinymist-v0.11.1" } diff --git a/editors/vscode/package.json b/editors/vscode/package.json index 39af37033..be5f5702b 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -1,6 +1,6 @@ { "name": "tinymist", - "version": "0.11.14", + "version": "0.11.15-rc2", "description": "An integrated language service for Typst", "categories": [ "Programming Languages", diff --git a/syntaxes/textmate/package.json b/syntaxes/textmate/package.json index bc0b54f32..e1e3a5956 100644 --- a/syntaxes/textmate/package.json +++ b/syntaxes/textmate/package.json @@ -1,6 +1,6 @@ { "name": "typst-textmate", - "version": "0.11.14", + "version": "0.11.15-rc2", "private": true, "scripts": { "compile": "npx tsc && node ./dist/main.js",