Skip to content

Commit 6b489ea

Browse files
build: bump version to 0.6.1-rc3 (#762)
1 parent 3eeb078 commit 6b489ea

File tree

47 files changed

+242
-231
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+242
-231
lines changed

Cargo.lock

Lines changed: 43 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace.package]
22
description = "Run Typst in JavaScriptWorld."
33
authors = ["Typst.ts Developers", "The Typst Project Developers"]
4-
version = "0.6.1-rc2"
4+
version = "0.6.1-rc3"
55
edition = "2021"
66
readme = "README.md"
77
license = "Apache-2.0"
@@ -200,22 +200,22 @@ tinymist-package = { version = "0.13.24-rc1", default-features = false }
200200
tinymist-project = { version = "0.13.24-rc1", default-features = false }
201201

202202
# project core
203-
reflexo = { version = "0.6.1-rc2", path = "crates/reflexo", default-features = false }
204-
reflexo-typst = { version = "0.6.1-rc2", path = "crates/reflexo-typst" }
203+
reflexo = { version = "0.6.1-rc3", path = "crates/reflexo", default-features = false }
204+
reflexo-typst = { version = "0.6.1-rc3", path = "crates/reflexo-typst" }
205205

206206
# conversions
207-
reflexo-typst2vec = { version = "0.6.1-rc2", path = "crates/conversion/typst2vec" }
208-
reflexo-typst2hast = { version = "0.6.1-rc2", path = "crates/conversion/typst2hast" }
209-
reflexo-vec2canvas = { version = "0.6.1-rc2", path = "crates/conversion/vec2canvas" }
210-
reflexo-vec2sema = { version = "0.6.1-rc2", path = "crates/conversion/vec2sema" }
211-
reflexo-vec2bbox = { version = "0.6.1-rc2", path = "crates/conversion/vec2bbox" }
212-
reflexo-vec2dom = { version = "0.6.1-rc2", path = "crates/conversion/vec2dom" }
213-
reflexo-vec2svg = { version = "0.6.1-rc2", path = "crates/conversion/vec2svg" }
207+
reflexo-typst2vec = { version = "0.6.1-rc3", path = "crates/conversion/typst2vec" }
208+
reflexo-typst2hast = { version = "0.6.1-rc3", path = "crates/conversion/typst2hast" }
209+
reflexo-vec2canvas = { version = "0.6.1-rc3", path = "crates/conversion/vec2canvas" }
210+
reflexo-vec2sema = { version = "0.6.1-rc3", path = "crates/conversion/vec2sema" }
211+
reflexo-vec2bbox = { version = "0.6.1-rc3", path = "crates/conversion/vec2bbox" }
212+
reflexo-vec2dom = { version = "0.6.1-rc3", path = "crates/conversion/vec2dom" }
213+
reflexo-vec2svg = { version = "0.6.1-rc3", path = "crates/conversion/vec2svg" }
214214

215215
# project components
216-
typst-ts-test-common = { version = "0.6.1-rc2", path = "tests/common" }
217-
typst-ts-dev-server = { version = "0.6.1-rc2", path = "server/dev" }
218-
typst-ts-cli = { version = "0.6.1-rc2", path = "cli" }
216+
typst-ts-test-common = { version = "0.6.1-rc3", path = "tests/common" }
217+
typst-ts-dev-server = { version = "0.6.1-rc3", path = "server/dev" }
218+
typst-ts-cli = { version = "0.6.1-rc3", path = "cli" }
219219

220220
[workspace.lints.rust]
221221
# missing_docs = "warn"
@@ -265,13 +265,13 @@ typst-html = { git = "https://github.com/Myriad-Dreamin/typst.git", tag = "typst
265265

266266
# fontdb = { path = "../fontdb" }
267267

268-
typst-shim = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
269-
tinymist-derive = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
270-
tinymist-std = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
271-
tinymist-task = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
272-
tinymist-package = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
273-
tinymist-world = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
274-
tinymist-project = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
268+
# typst-shim = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
269+
# tinymist-derive = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
270+
# tinymist-std = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
271+
# tinymist-task = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
272+
# tinymist-package = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
273+
# tinymist-world = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
274+
# tinymist-project = { git = "https://github.com/Myriad-Dreamin/tinymist.git", rev = "48311acbdfbdfed71dcb406e2c7f7f8593c80b97" }
275275

276276
# [patch."https://github.com/Myriad-Dreamin/tinymist.git"]
277277
# typst-shim = { path = "../tinymist/crates/typst-shim" }

assets/data/bundle-size.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.6.1-rc2",
2+
"version": "0.6.1-rc3",
33
"sizes": {
44
"typst-ts-renderer": 359580,
55
"typst-ts-web-compiler": 7988658,

docs/cookery/get-started.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ To get it in browser, you can load a all-in-one bundle script from CDN and use i
8585
```html
8686
<script
8787
type="module"
88-
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc2/dist/esm/index.js"
88+
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc3/dist/esm/index.js"
8989
id="typst"
9090
>
9191
console.log($typst.svg({

0 commit comments

Comments
 (0)