diff --git a/Cargo.toml b/Cargo.toml index 12c68fe4..82907be9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen" -version = "0.1.0" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" readme = "README.md" @@ -17,7 +17,7 @@ test = false doctest = false [dependencies] -wasm-bindgen-macro = { path = "crates/macro", version = "0.1" } +wasm-bindgen-macro = { path = "crates/macro", version = "0.2" } [dev-dependencies] test-support = { path = "crates/test-support" } diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 2a112bfe..40add4b3 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "wasm-bindgen-backend" -version = "0.1.0" +version = "0.2.0" authors = ["Nick Fitzgerald "] [dependencies] quote = '0.5' proc-macro2 = { version = "0.3", features = ["nightly"] } -wasm-bindgen-shared = { path = "../shared", version = "0.1.0" } +wasm-bindgen-shared = { path = "../shared", version = "0.2.0" } syn = { version = '0.13', features = ['full'] } diff --git a/crates/cli-support/Cargo.toml b/crates/cli-support/Cargo.toml index 91a89569..e5aeff9e 100644 --- a/crates/cli-support/Cargo.toml +++ b/crates/cli-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-cli-support" -version = "0.1.3" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/wasm-bindgen" @@ -14,5 +14,5 @@ Shared support for the wasm-bindgen-cli package, an internal dependency base64 = "0.9" parity-wasm = "0.27" serde_json = "1.0" -wasm-bindgen-shared = { path = "../shared", version = '0.1' } +wasm-bindgen-shared = { path = "../shared", version = '0.2' } wasm-gc-api = "0.1" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 8390ee42..8b6b9744 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-cli" -version = "0.1.1" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/wasm-bindgen" @@ -17,8 +17,8 @@ docopt = "0.8" parity-wasm = "0.27" serde = "1.0" serde_derive = "1.0" -wasm-bindgen-cli-support = { path = "../cli-support", version = "0.1.1" } -wasm-bindgen-shared = { path = "../shared", version = "0.1" } +wasm-bindgen-cli-support = { path = "../cli-support", version = "0.2.0" } +wasm-bindgen-shared = { path = "../shared", version = "0.2" } [[bin]] name = "wasm-bindgen" diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 2bd01a8b..799bd739 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-macro" -version = "0.1.1" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/wasm-bindgen" @@ -18,5 +18,5 @@ syn = { version = '0.13', features = ['full'] } quote = '0.5' proc-macro2 = { version = "0.3", features = ["nightly"] } serde_json = "1" -wasm-bindgen-shared = { path = "../shared", version = "0.1.0" } -wasm-bindgen-backend = { path = "../backend", version = "0.1.0" } +wasm-bindgen-shared = { path = "../shared", version = "0.2.0" } +wasm-bindgen-backend = { path = "../backend", version = "0.2.0" } diff --git a/crates/shared/Cargo.toml b/crates/shared/Cargo.toml index 456cb103..996745f2 100644 --- a/crates/shared/Cargo.toml +++ b/crates/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-bindgen-shared" -version = "0.1.1" +version = "0.2.0" authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/wasm-bindgen" diff --git a/examples/hello_world/Cargo.toml b/examples/hello_world/Cargo.toml index 342df1fb..5e4c78de 100644 --- a/examples/hello_world/Cargo.toml +++ b/examples/hello_world/Cargo.toml @@ -11,4 +11,4 @@ crate-type = ["cdylib"] # but you'd use the commented out version below if you're copying this into your # project. wasm-bindgen = { path = "../.." } -#wasm-bindgen = { git = "https://github.com/alexcrichton/wasm-bindgen" } +#wasm-bindgen = "0.2" diff --git a/examples/smorgasboard/Cargo.toml b/examples/smorgasboard/Cargo.toml index 3f2b558a..8d130080 100644 --- a/examples/smorgasboard/Cargo.toml +++ b/examples/smorgasboard/Cargo.toml @@ -7,8 +7,4 @@ authors = ["Alex Crichton "] crate-type = ["cdylib"] [dependencies] -# Here we're using a path dependency to use what's already in this repository, -# but you'd use the commented out version below if you're copying this into your -# project. wasm-bindgen = { path = "../.." } -#wasm-bindgen = { git = "https://github.com/alexcrichton/wasm-bindgen" }