Skip to content

Commit

Permalink
build: bump version to 0.5.0-rc9
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Nov 15, 2024
1 parent 4ff0444 commit 80d0341
Show file tree
Hide file tree
Showing 37 changed files with 354 additions and 262 deletions.
464 changes: 278 additions & 186 deletions Cargo.lock

Large diffs are not rendered by default.

40 changes: 20 additions & 20 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-rc8"
version = "0.5.0-rc9"
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-rc8", path = "crates/reflexo", default-features = false }
reflexo-vfs = { version = "0.5.0-rc8", path = "crates/reflexo-vfs" }
reflexo-world = { version = "0.5.0-rc8", path = "crates/reflexo-world" }
reflexo-typst = { version = "0.5.0-rc8", path = "crates/reflexo-typst", default-features = false }
reflexo-typst-shim = { version = "0.5.0-rc8", path = "crates/reflexo-typst-shim" }
reflexo = { version = "0.5.0-rc9", path = "crates/reflexo", default-features = false }
reflexo-vfs = { version = "0.5.0-rc9", path = "crates/reflexo-vfs" }
reflexo-world = { version = "0.5.0-rc9", path = "crates/reflexo-world" }
reflexo-typst = { version = "0.5.0-rc9", path = "crates/reflexo-typst", default-features = false }
reflexo-typst-shim = { version = "0.5.0-rc9", path = "crates/reflexo-typst-shim" }

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

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

[workspace.lints.rust]
missing_docs = "warn"
Expand All @@ -231,11 +231,11 @@ undocumented_unsafe_blocks = "warn"
# typst-pdf = { git = "https://github.com/Myriad-Dreamin/typst.git", branch = "typst-ts-v0.10.0" }

# comemo = { git = "https://github.com/Dherse/comemo", rev = "15c8d5b" }
typst = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc8-4" }
typst-syntax = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc8-4" }
typst-ide = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc8-4" }
typst-svg = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc8-4" }
typst-pdf = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc8-4" }
typst = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc9" }
typst-syntax = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc9" }
typst-ide = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc9" }
typst-svg = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc9" }
typst-pdf = { git = "https://github.com/Myriad-Dreamin/typst", tag = "typst.ts/v0.5.0-rc9" }

# comemo = { path = "../comemo" }
# typst = { path = "../typst/crates/typst" }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Minimum version of Rust compiler: 1.80.0
# Minimum version of Rust compiler: 1.81.0
ARG RUST_VERSION=1.81.0

FROM rust:${RUST_VERSION}-bullseye AS build
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-rc8",
"version": "0.5.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.5.0-rc8",
"version": "0.5.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/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-rc8",
"version": "0.5.0-rc9",
"description": "Typst svg enhancement",
"author": "Myriad Dreamin <[email protected]>",
"license": "Apache-2.0",
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.5.0-rc8",
"version": "0.5.0-rc9",
"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/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-renderer",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"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.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc8"
"@myriaddreamin/typst.ts": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc9"
},
"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.5.0-rc8",
"version": "0.5.0-rc9",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
"keywords": [
Expand All @@ -15,8 +15,8 @@
"tslib": "^2.3.0"
},
"peerDependencies": {
"@myriaddreamin/typst.ts": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc8"
"@myriaddreamin/typst.ts": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc9"
},
"sideEffects": false
}
2 changes: 1 addition & 1 deletion packages/typst.node/npm/android-arm-eabi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-android-arm-eabi",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"android"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/android-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-android-arm64",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"android"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-darwin-arm64",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-darwin-x64",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"darwin"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/freebsd-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-freebsd-x64",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"freebsd"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/linux-arm-gnueabihf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-linux-arm-gnueabihf",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-linux-arm64-gnu",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/linux-arm64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-linux-arm64-musl",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-linux-x64-gnu",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/linux-x64-musl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-linux-x64-musl",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"linux"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/win32-arm64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-win32-arm64-msvc",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler-win32-x64-msvc",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"os": [
"win32"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/typst-ts-node-compiler",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"author": "Myriad-Dreamin",
"description": "Compile or Render Typst documents in Node environment.",
"main": "index.js",
Expand Down
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.5.0-rc8",
"version": "0.5.0-rc9",
"description": "Typst.ts for React",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down Expand Up @@ -39,8 +39,8 @@
"publish:lib": "npm publish --access public || exit 0"
},
"peerDependencies": {
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc8",
"@myriaddreamin/typst.ts": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc9",
"@myriaddreamin/typst.ts": "^0.5.0-rc9",
"react": "^17.0.1 || ^18.x",
"react-dom": "^17.0.1 || ^18.x"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/typst.solid/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"serve": "vite preview"
},
"devDependencies": {
"@myriaddreamin/typst-ts-renderer": "0.5.0-rc8",
"@myriaddreamin/typst.ts": "0.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "0.5.0-rc9",
"@myriaddreamin/typst.ts": "0.5.0-rc9",
"solid-devtools": "^0.29.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
Expand Down
4 changes: 2 additions & 2 deletions packages/typst.solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@myriaddreamin/typst-ts-renderer": "0.5.0-rc8",
"@myriaddreamin/typst.ts": "0.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "0.5.0-rc9",
"@myriaddreamin/typst.ts": "0.5.0-rc9",
"solid-js": "^1.8.22",
"vite-plugin-solid": "^2.10.2",
"vite": "^5.4.8"
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.5.0-rc8",
"version": "0.5.0-rc9",
"description": "Run Typst in JavaScriptWorld.",
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
Expand Down Expand Up @@ -46,8 +46,8 @@
"idb": "^7.1.1"
},
"peerDependencies": {
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-web-compiler": "^0.5.0-rc8"
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-web-compiler": "^0.5.0-rc9"
},
"peerDependenciesMeta": {
"@myriaddreamin/typst-ts-renderer": {
Expand Down
2 changes: 1 addition & 1 deletion packages/typst.vue3/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@myriaddreamin/typst.vue3",
"private": true,
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"type": "module",
"main": "src/Typst.vue",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions projects/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.5.0-rc8",
"version": "0.5.0-rc9",
"description": "Typst renderer plugin for Hexo",
"author": "Myriad Dreamin <[email protected]>",
"license": "Apache-2.0",
Expand All @@ -20,9 +20,9 @@
},
"peerDependencies": {
"hexo": "^6",
"@myriaddreamin/typst.ts": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-node-compiler": "^0.5.0-rc8"
"@myriaddreamin/typst.ts": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-node-compiler": "^0.5.0-rc9"
},
"devDependencies": {},
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions projects/highlighter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/highlighter-typst",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"description": "typst code highlighting support in web",
"author": "Myriad Dreamin <[email protected]>",
"license": "Apache-2.0",
Expand All @@ -27,8 +27,8 @@
"dist/**/*.{mts,mjs,cjs,cts,ts,js}"
],
"peerDependencies": {
"@myriaddreamin/typst.ts": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-parser": "^0.5.0-rc8"
"@myriaddreamin/typst.ts": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-parser": "^0.5.0-rc9"
},
"devDependencies": {
"@myriaddreamin/typst.ts": "*",
Expand Down
4 changes: 2 additions & 2 deletions projects/rehype-typst/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@myriaddreamin/rehype-typst",
"version": "0.5.0-rc8",
"version": "0.5.0-rc9",
"description": "rehype plugin for rendering typst math equations",
"main": "index.js",
"license": "MIT",
Expand All @@ -17,7 +17,7 @@
"publish:lib": "npm publish --access public"
},
"dependencies": {
"@myriaddreamin/typst-ts-node-compiler": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-node-compiler": "^0.5.0-rc9",
"@types/hast": "^3.0.0",
"@types/katex": "^0.16.0",
"hast-util-from-html-isomorphic": "^2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion templates/compiler-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
"dependencies": {
"@myriaddreamin/typst-ts-node-compiler": "^0.5.0-rc8"
"@myriaddreamin/typst-ts-node-compiler": "^0.5.0-rc9"
},
"devDependencies": {
"@types/node": "^20.6.3",
Expand Down
6 changes: 3 additions & 3 deletions templates/compiler-wasm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
"author": "Myriad-Dreamin",
"license": "Apache-2.0",
"dependencies": {
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-web-compiler": "^0.5.0-rc8",
"@myriaddreamin/typst.ts": "^0.5.0-rc8",
"@myriaddreamin/typst-ts-renderer": "^0.5.0-rc9",
"@myriaddreamin/typst-ts-web-compiler": "^0.5.0-rc9",
"@myriaddreamin/typst.ts": "^0.5.0-rc9",
"node-fetch": "3.3.2",
"sync-request": "^6.1.0"
},
Expand Down
Loading

0 comments on commit 80d0341

Please sign in to comment.