Skip to content

Commit

Permalink
Bump version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
siefkenj committed Mar 30, 2024
1 parent da3899b commit d819c03
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
20 changes: 14 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
[package]
name = "tsify-next"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
authors = ["Madono Haru <[email protected]>"]
authors = [
"Madono Haru <[email protected]>",
"Jason Siefken <[email protected]>"
]
license = "MIT OR Apache-2.0"
description = "Tsify is a library for generating TypeScript definitions from rust code."
repository = "https://github.com/madonoharu/tsify"
homepage = "https://github.com/madonoharu/tsify"
description = "Tsify-next is a library for generating TypeScript definitions from rust code."
repository = "https://github.com/siefkenj/tsify"
homepage = "https://github.com/siefkenj/tsify"
keywords = ["wasm", "wasm-bindgen", "typescript"]
categories = ["wasm"]

Expand All @@ -32,7 +35,12 @@ wasm-bindgen-test = "0.3"
[features]
default = ["json"]
wasm-bindgen = ["tsify-next-macros/wasm-bindgen", "dep:wasm-bindgen"]
js = ["wasm-bindgen", "tsify-next-macros/js", "dep:serde", "dep:serde-wasm-bindgen"]
js = [
"wasm-bindgen",
"tsify-next-macros/js",
"dep:serde",
"dep:serde-wasm-bindgen"
]
json = [
"wasm-bindgen",
"tsify-next-macros/json",
Expand Down
13 changes: 8 additions & 5 deletions tsify-next-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
[package]
name = "tsify-next-macros"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
authors = ["Madono Haru <[email protected]>"]
authors = [
"Madono Haru <[email protected]>",
"Jason Siefken <[email protected]>"
]
license = "MIT OR Apache-2.0"
description = "Macros for tsify"
repository = "https://github.com/madonoharu/tsify"
homepage = "https://github.com/madonoharu/tsify"
description = "Macros for tsify-next"
repository = "https://github.com/siefkenj/tsify"
homepage = "https://github.com/siefkenj/tsify"
keywords = ["wasm", "wasm-bindgen", "typescript"]
categories = ["wasm"]

Expand Down

0 comments on commit d819c03

Please sign in to comment.