Skip to content

Commit

Permalink
build: bump version to v0.4.1 (#433)
Browse files Browse the repository at this point in the history
* build: update changelog for v0.4.1

* build: bump version to v0.4.1
  • Loading branch information
Myriad-Dreamin authored Dec 5, 2023
1 parent 442c3a1 commit 58f88e9
Show file tree
Hide file tree
Showing 22 changed files with 144 additions and 72 deletions.
74 changes: 74 additions & 0 deletions CHANGELOG/CHANGELOG-0.4.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,77 @@
# v0.4.1

## Changelog since v0.4.1

**Full Changelog**: https://github.com/Myriad-Dreamin/typst.ts/compare/v0.4.0...v0.4.1

### Security Notes

No new security note.

### Bug fix

- compiler: compile race condition in browser in https://github.com/Myriad-Dreamin/typst.ts/pull/393

- pkg::core: add a missing await in https://github.com/Myriad-Dreamin/typst.ts/pull/394

### Changes

- cli: improve TYPST_FONT_PATHS (typst#2746) in https://github.com/Myriad-Dreamin/typst.ts/pull/432

- compiler: use fontdb to load system fonts in https://github.com/Myriad-Dreamin/typst.ts/pull/403

- compiler: compile with env on stack in https://github.com/Myriad-Dreamin/typst.ts/pull/409

- compiler: replace diag features by CompileReporter in https://github.com/Myriad-Dreamin/typst.ts/pull/413

### External Feature

- build: build: upgrade to typst v0.10.0 in https://github.com/Myriad-Dreamin/typst.ts/pull/432

- pkg::parser: init in https://github.com/Myriad-Dreamin/typst.ts/pull/401

- pkg::core: expose render canvas api in https://github.com/Myriad-Dreamin/typst.ts/pull/404 and https://github.com/Myriad-Dreamin/typst.ts/pull/405

- cli: manual generation in https://github.com/Myriad-Dreamin/typst.ts/pull/408

- cli: export pdf with timestamp in https://github.com/Myriad-Dreamin/typst.ts/pull/423

- compiler: add query, getSemanticTokens api in https://github.com/Myriad-Dreamin/typst.ts/pull/398

- compiler: add offset encoding option for getSemanticTokens in https://github.com/Myriad-Dreamin/typst.ts/pull/400

- compiler: compile with env on stack in https://github.com/Myriad-Dreamin/typst.ts/pull/409

- compiler: post process handler for dyn layout in https://github.com/Myriad-Dreamin/typst.ts/pull/428

- exporter::text: add text exporter in https://github.com/Myriad-Dreamin/typst.ts/pull/422

- exporter::svg: layout and shape text in browser in https://github.com/Myriad-Dreamin/typst.ts/pull/416 and https://github.com/Myriad-Dreamin/typst.ts/pull/420

- exporter::svg: basic left-to-right text flow detection in https://github.com/Myriad-Dreamin/typst.ts/pull/421

- exporter::svg: pull better location handler from preview in https://github.com/Myriad-Dreamin/typst.ts/pull/419

- exporter::svg: update location handler for semantic labels in https://github.com/Myriad-Dreamin/typst.ts/pull/426

### Internal Feature

- proj: add cetz-editor in https://github.com/Myriad-Dreamin/typst.ts/pull/395

- proj: init highlighter in https://github.com/Myriad-Dreamin/typst.ts/pull/402

- core: add DynGenericExporter and DynPolymorphicExporter in https://github.com/Myriad-Dreamin/typst.ts/pull/411

- core: implement ligature handling in https://github.com/Myriad-Dreamin/typst.ts/pull/414

- core: add `PageMetadata::Custom` in https://github.com/Myriad-Dreamin/typst.ts/pull/425

- core: add getCustomV1 api in https://github.com/Myriad-Dreamin/typst.ts/pull/427

- compiler: export destination path to module in https://github.com/Myriad-Dreamin/typst.ts/pull/430

- compiler: add intern support in https://github.com/Myriad-Dreamin/typst.ts/pull/429

# v0.4.0

This is a major upgrade of typst.ts, so we decide to increment the minor version number. The most important change is that we have stabilized the API for TypstRenderer. We have also added guidance to typst.ts in https://github.com/Myriad-Dreamin/typst.ts/pull/391.
Expand Down
44 changes: 22 additions & 22 deletions Cargo.lock

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

24 changes: 12 additions & 12 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.4.1-rc3"
version = "0.4.1"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -197,21 +197,21 @@ vergen = { version = "8.2.5", features = [
] }

# project core
typst-ts-core = { version = "0.4.1-rc3", default-features = false }
typst-ts-compiler = { version = "0.4.1-rc3", default-features = false }
typst-ts-test-common = { version = "0.4.1-rc3", path = "tests/common" }
typst-ts-core = { version = "0.4.1", default-features = false }
typst-ts-compiler = { version = "0.4.1", default-features = false }
typst-ts-test-common = { version = "0.4.1", path = "tests/common" }

# project exporters
typst-ts-ast-exporter = "0.4.1-rc1"
typst-ts-pdf-exporter = "0.4.1-rc1"
typst-ts-canvas-exporter = { version = "0.4.1-rc3", path = "exporter/canvas" }
typst-ts-serde-exporter = "0.4.1-rc1"
typst-ts-svg-exporter = "0.4.1-rc1"
typst-ts-text-exporter = "0.4.1-rc1"
typst-ts-ast-exporter = "0.4.1"
typst-ts-pdf-exporter = "0.4.1"
typst-ts-canvas-exporter = { version = "0.4.1", path = "exporter/canvas" }
typst-ts-serde-exporter = "0.4.1"
typst-ts-svg-exporter = "0.4.1"
typst-ts-text-exporter = "0.4.1"

# project common components
typst-ts-dev-server = { version = "0.4.1-rc3", path = "server/dev" }
typst-ts-cli = { version = "0.4.1-rc3", path = "cli" }
typst-ts-dev-server = { version = "0.4.1", path = "server/dev" }
typst-ts-cli = { version = "0.4.1", path = "cli" }

[patch.crates-io]
typst-ts-core = { path = "core" }
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.4.1-rc3",
"version": "0.4.1",
"author": "Myriad-Dreamin",
"description": "Run Typst in JavaScriptWorld.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ web-sys = { workspace = true, features = [
console_error_panic_hook.workspace = true

typst-ts-core.workspace = true
typst-ts-compiler = { version = "0.4.1-rc1", default-features = false, features = [
typst-ts-compiler = { version = "0.4.1", default-features = false, features = [
"web",
] }
typst-ts-ast-exporter.workspace = true
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.4.1-rc3",
"version": "0.4.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/parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ web-sys = { workspace = true, features = [
console_error_panic_hook.workspace = true

typst-ts-core.workspace = true
typst-ts-compiler = { version = "0.4.1-rc1", default-features = false, features = [
typst-ts-compiler = { version = "0.4.1", default-features = false, features = [
"web",
] }

Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-parser",
"version": "0.4.1-rc3",
"version": "0.4.1",
"description": "WASM module for Parsing Typst documents in JavaScript environment.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ serde-wasm-bindgen.workspace = true
web-sys = { workspace = true, features = ["console", "Window"] }

typst-ts-core.workspace = true
typst-ts-compiler = { version = "0.4.1-rc1", default-features = false, features = [
typst-ts-compiler = { version = "0.4.1", default-features = false, features = [
"web-render",
] }
typst-ts-canvas-exporter = { workspace = true, optional = true }
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-renderer",
"version": "0.4.1-rc3",
"version": "0.4.1",
"description": "WASM module for rendering Typst documents in browser.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/typst.angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
"zone.js": "~0.13.0"
},
"peerDependencies": {
"@myriaddreamin/typst.ts": "^0.4.0",
"@myriaddreamin/typst-ts-renderer": "^0.4.0"
"@myriaddreamin/typst.ts": "^0.4.1",
"@myriaddreamin/typst-ts-renderer": "^0.4.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
Expand Down
Loading

0 comments on commit 58f88e9

Please sign in to comment.