Skip to content

Commit

Permalink
dev: bump version to 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Apr 26, 2023
1 parent 9a06807 commit 3956344
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "typst-ts-cli"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "Command line tool for Typst.ts."
repository = "https://github.com/Myriad-Dreamin/typst.ts"

[dependencies]
typst-ts-core = "0.1.4"
typst-ts-compiler = "0.1.4"
typst-ts-core = "0.1.5"
typst-ts-compiler = "0.1.5"
typst = "0.2.0"
typst-library = "0.2.0"

Expand Down
2 changes: 1 addition & 1 deletion cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub mod utils;
use clap::{ArgAction, Parser, Subcommand};

#[derive(Debug, Parser)]
#[clap(name = "typst-ts-cli", version = "0.1.4")]
#[clap(name = "typst-ts-cli", version = "0.1.5")]
pub struct Opts {
#[clap(subcommand)]
pub sub: Subcommands,
Expand Down
4 changes: 2 additions & 2 deletions compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "typst-ts-compiler"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "Compile Typst documents."
repository = "https://github.com/Myriad-Dreamin/typst.ts"

[dependencies]
typst-ts-core = "0.1.4"
typst-ts-core = "0.1.5"

typst = "0.2.0"
typst-library = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion contrib/fontctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typst-ts-fontctl"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "Font control for Typst.ts."
Expand Down
2 changes: 1 addition & 1 deletion contrib/fontctl/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use clap::Parser;

#[derive(Debug, Parser)]
#[clap(name = "typst-ts-fontctl", version = "0.1.4")]
#[clap(name = "typst-ts-fontctl", version = "0.1.5")]
pub struct Opts {
/// Use font assets in branch of typst
#[clap(long, default_value = "")]
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typst-ts-core"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "Serialize Typst document tree."
Expand Down
2 changes: 1 addition & 1 deletion exporter/canvas/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typst-ts-canvas-exporter"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "Export a frame of Typst document into canvas element."
Expand Down
2 changes: 1 addition & 1 deletion exporter/raster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typst-ts-raster-exporter"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "Export a frame of Typst document into a raster image."
Expand Down
2 changes: 1 addition & 1 deletion exporter/ws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typst-ts-ws-exporter"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
description = "streaming typst documents to a websocket channel."
Expand Down
4 changes: 2 additions & 2 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.1.4",
"version": "0.1.5",
"description": "Typst.ts for React",
"main": "src/lib/index.js",
"types": "src/lib/index.d.ts",
Expand All @@ -26,7 +26,7 @@
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"@myriaddreamin/typst.ts": "^0.1.4"
"@myriaddreamin/typst.ts": "^0.1.5"
},
"peerDependencies": {
"react": "^17.0.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/typst.ts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typst-ts-renderer"
version = "0.1.4"
version = "0.1.5"
license = "Apache-2.0"
edition = "2021"
readme = "README.md"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/Myriad-Dreamin/typst.ts"
crate-type = ["cdylib"]

[dependencies]
typst-ts-core = "0.1.4"
typst-ts-core = "0.1.5"
typst-ts-canvas-exporter = { version = "0.1", optional = true }
typst-ts-raster-exporter = { version = "0.1", optional = true }

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.1.4",
"version": "0.1.5",
"description": "Render Typst documents in browser.",
"keywords": [
"TypeScript",
Expand Down

0 comments on commit 3956344

Please sign in to comment.