Skip to content

Commit

Permalink
build: bump version to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Dec 4, 2024
1 parent fc593d9 commit 300eb3e
Show file tree
Hide file tree
Showing 37 changed files with 118 additions and 105 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG/CHANGELOG-0.5.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# v0.5.0

## Changelog since v0.5.1

### Security Notes

No new security note.

### Misc

The release script failed because of following reasons:

- (Fix) font assets is not managed by typst.ts anymore
- (Fix) broken package.json of typst.node

## Changelog since v0.5.0

**Full Changelog**: https://github.com/Myriad-Dreamin/typst.ts/compare/v0.4.1...v0.5.0
Expand Down
68 changes: 34 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[workspace.package]
description = "Run Typst in JavaScriptWorld."
authors = ["Typst.ts Developers", "The Typst Project Developers"]
version = "0.5.0"
version = "0.5.1"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -194,24 +194,24 @@ vergen = { version = "9.0.1", features = [
vergen-gitcl = { version = "1.0.1" }

# project core
reflexo = { version = "0.5.0", path = "crates/reflexo", default-features = false }
reflexo-vfs = { version = "0.5.0", path = "crates/reflexo-vfs" }
reflexo-world = { version = "0.5.0", path = "crates/reflexo-world" }
reflexo-typst = { version = "0.5.0", path = "crates/reflexo-typst", default-features = false }
reflexo-typst-shim = { version = "0.5.0", path = "crates/reflexo-typst-shim" }
reflexo = { version = "0.5.1", path = "crates/reflexo", default-features = false }
reflexo-vfs = { version = "0.5.1", path = "crates/reflexo-vfs" }
reflexo-world = { version = "0.5.1", path = "crates/reflexo-world" }
reflexo-typst = { version = "0.5.1", path = "crates/reflexo-typst", default-features = false }
reflexo-typst-shim = { version = "0.5.1", path = "crates/reflexo-typst-shim" }

# conversions
reflexo-typst2vec = { version = "0.5.0", path = "crates/conversion/typst2vec" }
reflexo-vec2canvas = { version = "0.5.0", path = "crates/conversion/vec2canvas" }
reflexo-vec2sema = { version = "0.5.0", path = "crates/conversion/vec2sema" }
reflexo-vec2bbox = { version = "0.5.0", path = "crates/conversion/vec2bbox" }
reflexo-vec2dom = { version = "0.5.0", path = "crates/conversion/vec2dom" }
reflexo-vec2svg = { version = "0.5.0", path = "crates/conversion/vec2svg" }
reflexo-typst2vec = { version = "0.5.1", path = "crates/conversion/typst2vec" }
reflexo-vec2canvas = { version = "0.5.1", path = "crates/conversion/vec2canvas" }
reflexo-vec2sema = { version = "0.5.1", path = "crates/conversion/vec2sema" }
reflexo-vec2bbox = { version = "0.5.1", path = "crates/conversion/vec2bbox" }
reflexo-vec2dom = { version = "0.5.1", path = "crates/conversion/vec2dom" }
reflexo-vec2svg = { version = "0.5.1", path = "crates/conversion/vec2svg" }

# project components
typst-ts-test-common = { version = "0.5.0", path = "tests/common" }
typst-ts-dev-server = { version = "0.5.0", path = "server/dev" }
typst-ts-cli = { version = "0.5.0", path = "cli" }
typst-ts-test-common = { version = "0.5.1", path = "tests/common" }
typst-ts-dev-server = { version = "0.5.1", path = "server/dev" }
typst-ts-cli = { version = "0.5.1", path = "cli" }

[workspace.lints.rust]
missing_docs = "warn"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst.ts",
"version": "0.5.0",
"version": "0.5.1",
"author": "Myriad-Dreamin",
"description": "Run Typst in JavaScriptWorld.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-web-compiler",
"version": "0.5.0",
"version": "0.5.1",
"description": "WASM module for Compiling Typst documents in JavaScript environment.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/enhanced-typst-svg/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "enhanced-typst-svg",
"private": true,
"version": "0.5.0",
"version": "0.5.1",
"description": "Typst svg enhancement",
"author": "Myriad Dreamin <[email protected]>",
"license": "Apache-2.0",
Expand Down
Loading

0 comments on commit 300eb3e

Please sign in to comment.