Skip to content

Commit aa59795

Browse files
build: bump version to 0.5.4
1 parent 8308e52 commit aa59795

File tree

38 files changed

+104
-119
lines changed

38 files changed

+104
-119
lines changed

CHANGELOG/CHANGELOG-0.5.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to the "tinymist" extension will be documented in this file.
44

55
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
66

7+
## v0.5.4 - [2024-12-30]
8+
9+
### Package: @myriaddreamin/typst.node
10+
11+
- (Fix) artifacts built by CI were broken.
12+
713
## v0.5.3 - [2024-12-29]
814

915
### Package: @myriaddreamin/typst.node

Cargo.lock

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

Cargo.toml

Lines changed: 15 additions & 15 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.5.3"
4+
version = "0.5.4"
55
edition = "2021"
66
readme = "README.md"
77
license = "Apache-2.0"
@@ -194,24 +194,24 @@ vergen = { version = "9.0.1", features = [
194194
vergen-gitcl = { version = "1.0.1" }
195195

196196
# project core
197-
reflexo = { version = "0.5.3", path = "crates/reflexo", default-features = false }
198-
reflexo-vfs = { version = "0.5.3", path = "crates/reflexo-vfs" }
199-
reflexo-world = { version = "0.5.3", path = "crates/reflexo-world" }
200-
reflexo-typst = { version = "0.5.3", path = "crates/reflexo-typst", default-features = false }
201-
reflexo-typst-shim = { version = "0.5.3", path = "crates/reflexo-typst-shim" }
197+
reflexo = { version = "0.5.4", path = "crates/reflexo", default-features = false }
198+
reflexo-vfs = { version = "0.5.4", path = "crates/reflexo-vfs" }
199+
reflexo-world = { version = "0.5.4", path = "crates/reflexo-world" }
200+
reflexo-typst = { version = "0.5.4", path = "crates/reflexo-typst", default-features = false }
201+
reflexo-typst-shim = { version = "0.5.4", path = "crates/reflexo-typst-shim" }
202202

203203
# conversions
204-
reflexo-typst2vec = { version = "0.5.3", path = "crates/conversion/typst2vec" }
205-
reflexo-vec2canvas = { version = "0.5.3", path = "crates/conversion/vec2canvas" }
206-
reflexo-vec2sema = { version = "0.5.3", path = "crates/conversion/vec2sema" }
207-
reflexo-vec2bbox = { version = "0.5.3", path = "crates/conversion/vec2bbox" }
208-
reflexo-vec2dom = { version = "0.5.3", path = "crates/conversion/vec2dom" }
209-
reflexo-vec2svg = { version = "0.5.3", path = "crates/conversion/vec2svg" }
204+
reflexo-typst2vec = { version = "0.5.4", path = "crates/conversion/typst2vec" }
205+
reflexo-vec2canvas = { version = "0.5.4", path = "crates/conversion/vec2canvas" }
206+
reflexo-vec2sema = { version = "0.5.4", path = "crates/conversion/vec2sema" }
207+
reflexo-vec2bbox = { version = "0.5.4", path = "crates/conversion/vec2bbox" }
208+
reflexo-vec2dom = { version = "0.5.4", path = "crates/conversion/vec2dom" }
209+
reflexo-vec2svg = { version = "0.5.4", path = "crates/conversion/vec2svg" }
210210

211211
# project components
212-
typst-ts-test-common = { version = "0.5.3", path = "tests/common" }
213-
typst-ts-dev-server = { version = "0.5.3", path = "server/dev" }
214-
typst-ts-cli = { version = "0.5.3", path = "cli" }
212+
typst-ts-test-common = { version = "0.5.4", path = "tests/common" }
213+
typst-ts-dev-server = { version = "0.5.4", path = "server/dev" }
214+
typst-ts-cli = { version = "0.5.4", path = "cli" }
215215

216216
[workspace.lints.rust]
217217
missing_docs = "warn"

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",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
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.5.3",
3+
"version": "0.5.4",
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.5.3",
4+
"version": "0.5.4",
55
"description": "Typst svg enhancement",
66
"author": "Myriad Dreamin <[email protected]>",
77
"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.5.3",
3+
"version": "0.5.4",
44
"description": "WASM module for Parsing Typst documents in JavaScript environment.",
55
"author": "Myriad-Dreamin",
66
"license": "Apache-2.0",

packages/renderer/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-renderer",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"description": "WASM module for rendering Typst documents in browser.",
55
"author": "Myriad-Dreamin",
66
"license": "Apache-2.0",

packages/typst.angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"zone.js": "~0.13.0"
2828
},
2929
"peerDependencies": {
30-
"@myriaddreamin/typst.ts": "^0.5.3",
31-
"@myriaddreamin/typst-ts-renderer": "^0.5.3"
30+
"@myriaddreamin/typst.ts": "^0.5.4",
31+
"@myriaddreamin/typst-ts-renderer": "^0.5.4"
3232
},
3333
"devDependencies": {
3434
"@angular-devkit/build-angular": "^16.2.0",

packages/typst.angular/projects/typst.angular/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@myriaddreamin/typst.angular",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"author": "Myriad-Dreamin",
55
"license": "Apache-2.0",
66
"keywords": [
@@ -15,8 +15,8 @@
1515
"tslib": "^2.3.0"
1616
},
1717
"peerDependencies": {
18-
"@myriaddreamin/typst.ts": "^0.5.3",
19-
"@myriaddreamin/typst-ts-renderer": "^0.5.3"
18+
"@myriaddreamin/typst.ts": "^0.5.4",
19+
"@myriaddreamin/typst-ts-renderer": "^0.5.4"
2020
},
2121
"sideEffects": false
2222
}

packages/typst.node/npm/android-arm-eabi/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-node-compiler-android-arm-eabi",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"os": [
55
"android"
66
],

packages/typst.node/npm/android-arm64/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-node-compiler-android-arm64",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"os": [
55
"android"
66
],

packages/typst.node/npm/darwin-arm64/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-node-compiler-darwin-arm64",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"os": [
55
"darwin"
66
],

packages/typst.node/npm/darwin-x64/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-node-compiler-darwin-x64",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"os": [
55
"darwin"
66
],

packages/typst.node/npm/freebsd-x64/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-node-compiler-freebsd-x64",
3-
"version": "0.5.3",
3+
"version": "0.5.4",
44
"os": [
55
"freebsd"
66
],

0 commit comments

Comments
 (0)