From 6b350a60daab4119ecb5b1157dfde702c5557424 Mon Sep 17 00:00:00 2001 From: Adam Berger Date: Sun, 6 Feb 2022 02:20:12 -0500 Subject: [PATCH] chore: 0.2.0 release --- CHANGELOG.md | 2 +- ts-bindgen-build-support/Cargo.toml | 2 +- ts-bindgen-gen/Cargo.toml | 4 ++-- ts-bindgen-macro/Cargo.toml | 4 ++-- ts-bindgen-rt/Cargo.toml | 2 +- ts-bindgen-web/Cargo.toml | 4 ++-- ts-bindgen/Cargo.toml | 4 ++-- ts-bindgen/examples/paperjs/Cargo.toml | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 017f4ee..2d4196a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased] - ReleaseDate +## [0.2.0] - 2022-02-06 ### BREAKING CHANGE diff --git a/ts-bindgen-build-support/Cargo.toml b/ts-bindgen-build-support/Cargo.toml index 96a4b4a..1e475e8 100644 --- a/ts-bindgen-build-support/Cargo.toml +++ b/ts-bindgen-build-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen-build-support" -version = "0.1.0" +version = "0.2.0" description = "Generate a wasm-bindgen interface from typescript definitions. Build-time utilities." authors = ["Adam Berger "] license = "MIT OR Apache-2.0" diff --git a/ts-bindgen-gen/Cargo.toml b/ts-bindgen-gen/Cargo.toml index f09bcae..2ba4314 100644 --- a/ts-bindgen-gen/Cargo.toml +++ b/ts-bindgen-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen-gen" -version = "0.1.0" +version = "0.2.0" description = "Generate a wasm-bindgen interface from typescript definitions" authors = ["Adam Berger "] license = "MIT OR Apache-2.0" @@ -23,7 +23,7 @@ unicode-xid = "0.2.2" heck = "0.3.3" strum_macros = "0.23.0" enum_to_enum = "0.1.0" -ts-bindgen-build-support = { version = "0.1.0", path = "../ts-bindgen-build-support" } +ts-bindgen-build-support = { version = "0.2.0", path = "../ts-bindgen-build-support" } [dev-dependencies] tempfile = "3.2.0" diff --git a/ts-bindgen-macro/Cargo.toml b/ts-bindgen-macro/Cargo.toml index 6eb8fb1..4889b38 100644 --- a/ts-bindgen-macro/Cargo.toml +++ b/ts-bindgen-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen-macro" -version = "0.1.0" +version = "0.2.0" description = "Macro to generate a wasm-bindgen interface from typescript definitions" authors = ["Adam Berger "] license = "MIT OR Apache-2.0" @@ -15,7 +15,7 @@ categories = ["compilers", "command-line-utilities", "development-tools::ffi", " proc-macro = true [dependencies] -ts-bindgen-gen = { version = "0.1.0", path = "../ts-bindgen-gen" } +ts-bindgen-gen = { version = "0.2.0", path = "../ts-bindgen-gen" } quote = "1.0" syn = "1.0.74" diff --git a/ts-bindgen-rt/Cargo.toml b/ts-bindgen-rt/Cargo.toml index d571969..6b4f5d9 100644 --- a/ts-bindgen-rt/Cargo.toml +++ b/ts-bindgen-rt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen-rt" -version = "0.1.0" +version = "0.2.0" description = "Runtime dependency for ts-bindgen. Supports wasm-bindgen interfaces autogenerated from typescript definitions" authors = ["Adam Berger "] license = "MIT OR Apache-2.0" diff --git a/ts-bindgen-web/Cargo.toml b/ts-bindgen-web/Cargo.toml index cdc777a..e01d5e0 100644 --- a/ts-bindgen-web/Cargo.toml +++ b/ts-bindgen-web/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen-web" -version = "0.1.0" +version = "0.2.0" description = "Web interface for generating wasm-bindgen bindings from typescript definitions" authors = ["Adam Berger "] license = "MIT OR Apache-2.0" @@ -23,7 +23,7 @@ opt-level = "s" [dependencies] wasm-bindgen = "0.2.63" yew = "0.19.3" -ts-bindgen = { version = "0.1.0", path = "../ts-bindgen", default-features = false } +ts-bindgen = { version = "0.2.0", path = "../ts-bindgen", default-features = false } [dependencies.monaco] version = "0.3.0" diff --git a/ts-bindgen/Cargo.toml b/ts-bindgen/Cargo.toml index afd1fbb..c0d5546 100644 --- a/ts-bindgen/Cargo.toml +++ b/ts-bindgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen" -version = "0.1.0" +version = "0.2.0" description = "Generate a wasm-bindgen interface from typescript definitions" authors = ["Adam Berger "] license = "MIT OR Apache-2.0" @@ -22,7 +22,7 @@ default = ["bin"] bin = ["clap", "which"] [dependencies] -ts-bindgen-gen = { version = "0.1.0", path = "../ts-bindgen-gen" } +ts-bindgen-gen = { version = "0.2.0", path = "../ts-bindgen-gen" } clap = { version = "3.0.1", optional = true, features = ["derive"] } which = { version = "4.2.2", optional = true } diff --git a/ts-bindgen/examples/paperjs/Cargo.toml b/ts-bindgen/examples/paperjs/Cargo.toml index ad65202..53f31a6 100644 --- a/ts-bindgen/examples/paperjs/Cargo.toml +++ b/ts-bindgen/examples/paperjs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ts-bindgen-example-paperjs" -version = "0.1.0" +version = "0.2.0" description = "Example of using ts-bindgen to interface with three.js" authors = ["Adam Berger "] license = "MIT OR Apache-2.0" @@ -21,5 +21,5 @@ wasm-bindgen-test = "0.3.13" wasm-bindgen = "0.2.63" js-sys = "0.3.53" web-sys = { version = "0.3.53", features = ["Window", "HtmlCanvasElement", "ImageData", "SvgElement", "HtmlImageElement", "CanvasRenderingContext2d", "HtmlScriptElement"] } -ts-bindgen-rt = { version = "0.1.0", path = "../../../ts-bindgen-rt" } +ts-bindgen-rt = { version = "0.2.0", path = "../../../ts-bindgen-rt" } serde = { version = "1.0", features = ["derive"] }