Skip to content

Commit dda9cc0

Browse files
build: bump version to 0.6.1-rc5
1 parent c0c30e2 commit dda9cc0

File tree

46 files changed

+91
-91
lines changed

Some content is hidden

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

46 files changed

+91
-91
lines changed

Cargo.toml

Lines changed: 13 additions & 13 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-rc4"
4+
version = "0.6.1-rc5"
55
edition = "2021"
66
readme = "README.md"
77
license = "Apache-2.0"
@@ -199,22 +199,22 @@ tinymist-package = { version = "0.13.30-rc2", default-features = false }
199199
tinymist-project = { version = "0.13.30-rc2", default-features = false }
200200

201201
# project core
202-
reflexo = { version = "0.6.1-rc4", path = "crates/reflexo", default-features = false }
203-
reflexo-typst = { version = "0.6.1-rc4", path = "crates/reflexo-typst" }
202+
reflexo = { version = "0.6.1-rc5", path = "crates/reflexo", default-features = false }
203+
reflexo-typst = { version = "0.6.1-rc5", path = "crates/reflexo-typst" }
204204

205205
# conversions
206-
reflexo-typst2vec = { version = "0.6.1-rc4", path = "crates/conversion/typst2vec" }
207-
reflexo-typst2hast = { version = "0.6.1-rc4", path = "crates/conversion/typst2hast" }
208-
reflexo-vec2canvas = { version = "0.6.1-rc4", path = "crates/conversion/vec2canvas" }
209-
reflexo-vec2sema = { version = "0.6.1-rc4", path = "crates/conversion/vec2sema" }
210-
reflexo-vec2bbox = { version = "0.6.1-rc4", path = "crates/conversion/vec2bbox" }
211-
reflexo-vec2dom = { version = "0.6.1-rc4", path = "crates/conversion/vec2dom" }
212-
reflexo-vec2svg = { version = "0.6.1-rc4", path = "crates/conversion/vec2svg" }
206+
reflexo-typst2vec = { version = "0.6.1-rc5", path = "crates/conversion/typst2vec" }
207+
reflexo-typst2hast = { version = "0.6.1-rc5", path = "crates/conversion/typst2hast" }
208+
reflexo-vec2canvas = { version = "0.6.1-rc5", path = "crates/conversion/vec2canvas" }
209+
reflexo-vec2sema = { version = "0.6.1-rc5", path = "crates/conversion/vec2sema" }
210+
reflexo-vec2bbox = { version = "0.6.1-rc5", path = "crates/conversion/vec2bbox" }
211+
reflexo-vec2dom = { version = "0.6.1-rc5", path = "crates/conversion/vec2dom" }
212+
reflexo-vec2svg = { version = "0.6.1-rc5", path = "crates/conversion/vec2svg" }
213213

214214
# project components
215-
typst-ts-test-common = { version = "0.6.1-rc4", path = "tests/common" }
216-
typst-ts-dev-server = { version = "0.6.1-rc4", path = "server/dev" }
217-
typst-ts-cli = { version = "0.6.1-rc4", path = "cli" }
215+
typst-ts-test-common = { version = "0.6.1-rc5", path = "tests/common" }
216+
typst-ts-dev-server = { version = "0.6.1-rc5", path = "server/dev" }
217+
typst-ts-cli = { version = "0.6.1-rc5", path = "cli" }
218218

219219
[workspace.lints.rust]
220220
# missing_docs = "warn"

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-rc4",
2+
"version": "0.6.1-rc5",
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
@@ -120,7 +120,7 @@ To get it in browser, you can load a all-in-one bundle script from CDN and use i
120120
```html
121121
<script
122122
type="module"
123-
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc4/dist/esm/index.js"
123+
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc5/dist/esm/index.js"
124124
id="typst"
125125
>
126126
console.log($typst.svg({

docs/cookery/guide/all-in-one.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Using `all-in-one.bundle.js`:
6262
```html
6363
<script
6464
type="module"
65-
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc4/dist/esm/index.js"
65+
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc5/dist/esm/index.js"
6666
id="typst"
6767
>
6868
console.log($typst.svg({

github-pages/preview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Tiny Typst Previewer Example</title>
88
<!-- Loads the full bundle or the lite version from jsdelivr -->
9-
<!-- src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc4/dist/esm/index.js" -->
9+
<!-- src="https://cdn.jsdelivr.net/npm/@myriaddreamin/[email protected]rc5/dist/esm/index.js" -->
1010
<script type="module"
1111
src="https://cdn.jsdelivr.net/npm/@myriaddreamin/typst.ts/dist/esm/contrib/all-in-one-lite.bundle.js"
1212
id="typst"></script>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "reflexo-workspace",
3-
"version": "0.6.1-rc4",
3+
"version": "0.6.1-rc5",
44
"author": "Myriad-Dreamin",
55
"description": "Run Typst in JavaScriptWorld.",
66
"license": "Apache-2.0",

packages/compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@myriaddreamin/typst-ts-web-compiler",
3-
"version": "0.6.1-rc4",
3+
"version": "0.6.1-rc5",
44
"description": "WASM module for Compiling Typst documents in JavaScript environment.",
55
"author": "Myriad-Dreamin",
66
"license": "Apache-2.0",

packages/enhanced-typst-svg/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "enhanced-typst-svg",
33
"private": true,
4-
"version": "0.6.1-rc4",
4+
"version": "0.6.1-rc5",
55
"description": "Typst svg enhancement",
66
"author": "Myriad Dreamin <[email protected]>",
77
"license": "Apache-2.0",

packages/ng/compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@myriaddreamin/reflexo-typst-compiler",
3-
"version": "0.6.1-rc4",
3+
"version": "0.6.1-rc5",
44
"description": "Compile Typst documents in Browsers.",
55
"author": "Myriad-Dreamin",
66
"license": "Apache-2.0",

packages/parser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@myriaddreamin/typst-ts-parser",
3-
"version": "0.6.1-rc4",
3+
"version": "0.6.1-rc5",
44
"description": "WASM module for Parsing Typst documents in JavaScript environment.",
55
"author": "Myriad-Dreamin",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)