Skip to content

Commit

Permalink
build: bump version to v0.4.2-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Jan 3, 2024
1 parent 4303f6e commit 8d6bf4e
Show file tree
Hide file tree
Showing 22 changed files with 73 additions and 73 deletions.
46 changes: 23 additions & 23 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.2-rc1"
version = "0.4.2-rc2"
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.2-rc1", default-features = false }
typst-ts-compiler = { version = "0.4.2-rc1", default-features = false }
typst-ts-test-common = { version = "0.4.2-rc1", path = "tests/common" }
typst-ts-core = { version = "0.4.2-rc2", default-features = false }
typst-ts-compiler = { version = "0.4.2-rc2", default-features = false }
typst-ts-test-common = { version = "0.4.2-rc2", path = "tests/common" }

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

# project common components
typst-ts-dev-server = { version = "0.4.2-rc1", path = "server/dev" }
typst-ts-cli = { version = "0.4.2-rc1", path = "cli" }
typst-ts-dev-server = { version = "0.4.2-rc2", path = "server/dev" }
typst-ts-cli = { version = "0.4.2-rc2", 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.2-rc1",
"version": "0.4.2-rc2",
"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.2-rc1", default-features = false, features = [
typst-ts-compiler = { version = "0.4.2-rc2", 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.2-rc1",
"version": "0.4.2-rc2",
"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.4.2-rc1",
"version": "0.4.2-rc2",
"description": "Typst svg enhancement",
"author": "Myriad Dreamin <[email protected]>",
"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.2-rc1", default-features = false, features = [
typst-ts-compiler = { version = "0.4.2-rc2", 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.2-rc1",
"version": "0.4.2-rc2",
"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.2-rc1", default-features = false, features = [
typst-ts-compiler = { version = "0.4.2-rc2", 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.2-rc1",
"version": "0.4.2-rc2",
"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.2-rc1",
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc1"
"@myriaddreamin/typst.ts": "^0.4.2-rc2",
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/typst.angular/projects/typst.angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst.angular",
"version": "0.4.2-rc1",
"version": "0.4.2-rc2",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
"keywords": [
Expand All @@ -15,8 +15,8 @@
"tslib": "^2.3.0"
},
"peerDependencies": {
"@myriaddreamin/typst.ts": "^0.4.2-rc1",
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc1"
"@myriaddreamin/typst.ts": "^0.4.2-rc2",
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc2"
},
"sideEffects": false
}
6 changes: 3 additions & 3 deletions packages/typst.react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst.react",
"version": "0.4.2-rc1",
"version": "0.4.2-rc2",
"description": "Typst.ts for React",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down Expand Up @@ -38,8 +38,8 @@
"publish:lib": "npm publish --access public || exit 0"
},
"peerDependencies": {
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc1",
"@myriaddreamin/typst.ts": "^0.4.2-rc1",
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc2",
"@myriaddreamin/typst.ts": "^0.4.2-rc2",
"react": "^17.0.1 || ^18.x",
"react-dom": "^17.0.1 || ^18.x"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/typst.ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst.ts",
"version": "0.4.2-rc1",
"version": "0.4.2-rc2",
"description": "Run Typst in JavaScriptWorld.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down Expand Up @@ -41,8 +41,8 @@
"idb": "^7.1.1"
},
"peerDependencies": {
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc1",
"@myriaddreamin/typst-ts-web-compiler": "^0.4.2-rc1"
"@myriaddreamin/typst-ts-renderer": "^0.4.2-rc2",
"@myriaddreamin/typst-ts-web-compiler": "^0.4.2-rc2"
},
"peerDependenciesMeta": {
"@myriaddreamin/typst-ts-renderer": {
Expand Down
Loading

0 comments on commit 8d6bf4e

Please sign in to comment.