Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump version to 0.4.0-rc9 #385

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 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.0-rc8"
version = "0.4.0-rc9"
edition = "2021"
readme = "README.md"
license = "Apache-2.0"
Expand Down Expand Up @@ -183,21 +183,21 @@ vergen = { version = "8.2.5", features = [
] }

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

# project exporters
typst-ts-ast-exporter = "0.4.0-rc7"
typst-ts-pdf-exporter = "0.4.0-rc7"
typst-ts-canvas-exporter = { version = "0.4.0-rc8", path = "exporter/canvas" }
typst-ts-raster-exporter = "0.4.0-rc7"
typst-ts-serde-exporter = "0.4.0-rc7"
typst-ts-svg-exporter = "0.4.0-rc7"
typst-ts-ast-exporter = "0.4.0-rc9"
typst-ts-pdf-exporter = "0.4.0-rc9"
typst-ts-canvas-exporter = { version = "0.4.0-rc9", path = "exporter/canvas" }
typst-ts-raster-exporter = "0.4.0-rc9"
typst-ts-serde-exporter = "0.4.0-rc9"
typst-ts-svg-exporter = "0.4.0-rc9"

# project common components
typst-ts-dev-server = { version = "0.4.0-rc8", path = "server/dev" }
typst-ts-cli = { version = "0.4.0-rc8", path = "cli" }
typst-ts-dev-server = { version = "0.4.0-rc9", path = "server/dev" }
typst-ts-cli = { version = "0.4.0-rc9", 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.0-rc8",
"version": "0.4.0-rc9",
"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.4.0-rc8",
"version": "0.4.0-rc9",
"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/hexo-renderer-typst/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hexo-renderer-typst",
"version": "0.4.0-rc8",
"version": "0.4.0-rc9",
"description": "Typst renderer plugin for Hexo",
"author": "Myriad Dreamin <camiyoru@gmail.com>",
"license": "Apache-2.0",
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.0-rc8",
"version": "0.4.0-rc9",
"description": "WASM module for rendering Typst documents in browser.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion 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.0-rc8",
"version": "0.4.0-rc9",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion 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.0-rc8",
"version": "0.4.0-rc9",
"description": "Typst.ts for React",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion 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.0-rc8",
"version": "0.4.0-rc9",
"description": "Run Typst in JavaScriptWorld.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down
Loading