Skip to content

Bump to 0.2.13 #536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## 0.2.13

Currently unreleased
Released 2018-07-22

### Added

Expand All @@ -13,6 +13,11 @@ Currently unreleased
one name and Rust to call it by another, for example using `camelCase` in JS
and `snake_case` in Rust

### Fixed

* Compilation with the latest nightly compiler has been fixed (nightlies on and
after 2018-07-21)

--------------------------------------------------------------------------------

## 0.2.12
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -27,12 +27,12 @@ serde-serialize = ["serde", "serde_json", "std"]
xxx_debug_only_print_generated_code = ["wasm-bindgen-macro/xxx_debug_only_print_generated_code"]

[dependencies]
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.12" }
wasm-bindgen-macro = { path = "crates/macro", version = "=0.2.13" }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }

[dev-dependencies]
wasm-bindgen-test-project-builder = { path = "crates/test-project-builder", version = '=0.2.12' }
wasm-bindgen-test-project-builder = { path = "crates/test-project-builder", version = '=0.2.13' }

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions crates/backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-backend"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/backend"
Expand All @@ -20,4 +20,4 @@ proc-macro2 = "0.4.8"
quote = '0.6'
serde_json = "1.0"
syn = { version = '0.14', features = ['full', 'visit-mut'] }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.12" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.13" }
4 changes: 2 additions & 2 deletions crates/cli-support/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-cli-support"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli-support"
Expand All @@ -18,6 +18,6 @@ serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tempfile = "3.0"
wasm-bindgen-shared = { path = "../shared", version = '=0.2.12' }
wasm-bindgen-shared = { path = "../shared", version = '=0.2.13' }
wasm-gc-api = "0.1.8"
wasmi = "0.3"
6 changes: 3 additions & 3 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-cli"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/cli"
Expand All @@ -17,6 +17,6 @@ docopt = "1.0"
failure = "0.1"
serde = "1.0"
serde_derive = "1.0"
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.12" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.12" }
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.13" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.13" }
parity-wasm = "0.31"
8 changes: 4 additions & 4 deletions crates/js-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "js-sys"
version = "0.2.12"
version = "0.2.13"
authors = ["Alex Crichton <[email protected]>"]
readme = "./README.md"
categories = ["wasm"]
Expand All @@ -17,10 +17,10 @@ test = false
doctest = false

[dependencies]
wasm-bindgen = { path = "../..", version = "0.2.12" }
wasm-bindgen = { path = "../..", version = "0.2.13" }

[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = { path = '../test', version = '=0.2.12' }
wasm-bindgen-test = { path = '../test', version = '=0.2.13' }

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
wasm-bindgen-test-project-builder = { path = "../test-project-builder", version = '=0.2.12' }
wasm-bindgen-test-project-builder = { path = "../test-project-builder", version = '=0.2.13' }
6 changes: 3 additions & 3 deletions crates/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-macro"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/macro"
Expand All @@ -21,5 +21,5 @@ xxx_debug_only_print_generated_code = []
syn = { version = '0.14', features = ['full'] }
quote = '0.6'
proc-macro2 = "0.4.9"
wasm-bindgen-backend = { path = "../backend", version = "=0.2.12" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.12" }
wasm-bindgen-backend = { path = "../backend", version = "=0.2.13" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.13" }
2 changes: 1 addition & 1 deletion crates/shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-shared"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/shared"
Expand Down
2 changes: 1 addition & 1 deletion crates/test-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-test-macro"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/test-project-builder/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-test-project-builder"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
repository = "https://github.com/rustwasm/wasm-bindgen/tree/master/crates/test-project-builder"
Expand All @@ -12,4 +12,4 @@ Internal test support for wasm-bindgen

[dependencies]
lazy_static = "1"
wasm-bindgen-cli-support = { path = "../cli-support", version = '=0.2.12' }
wasm-bindgen-cli-support = { path = "../cli-support", version = '=0.2.13' }
8 changes: 4 additions & 4 deletions crates/test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "wasm-bindgen-test"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]

[dependencies]
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.12' }
wasm-bindgen = { path = '../..', version = '0.2.12' }
js-sys = { path = '../js-sys', version = '0.2.12' }
wasm-bindgen-test-macro = { path = '../test-macro', version = '=0.2.13' }
wasm-bindgen = { path = '../..', version = '0.2.13' }
js-sys = { path = '../js-sys', version = '0.2.13' }
console_error_panic_hook = '0.1'

[lib]
Expand Down
6 changes: 3 additions & 3 deletions crates/web-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ readme = "./README.md"
[build-dependencies]
env_logger = "0.5.10"
failure = "0.1"
wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.12" }
wasm-bindgen-webidl = { path = "../webidl", version = "=0.2.13" }

[dependencies]
wasm-bindgen = { path = "../..", version = "=0.2.12" }
wasm-bindgen = { path = "../..", version = "=0.2.13" }

[dev-dependencies]
wasm-bindgen-test-project-builder = { path = "../test-project-builder", version = '=0.2.12' }
wasm-bindgen-test-project-builder = { path = "../test-project-builder", version = '=0.2.13' }
6 changes: 3 additions & 3 deletions crates/webidl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm-bindgen-webidl"
version = "0.2.12"
version = "0.2.13"
authors = ["The wasm-bindgen Developers"]
license = "MIT/Apache-2.0"
categories = ["wasm"]
Expand All @@ -12,7 +12,7 @@ Support for parsing WebIDL specific to wasm-bindgen
"""

[dev-dependencies]
wasm-bindgen-test-project-builder = { path = "../test-project-builder", version = '=0.2.12' }
wasm-bindgen-test-project-builder = { path = "../test-project-builder", version = '=0.2.13' }

[dependencies]
failure = "0.1"
Expand All @@ -21,5 +21,5 @@ log = "0.4.1"
proc-macro2 = "0.4.8"
quote = '0.6'
syn = { version = '0.14', features = ['full'] }
wasm-bindgen-backend = { version = "=0.2.12", path = "../backend" }
wasm-bindgen-backend = { version = "=0.2.13", path = "../backend" }
webidl = "0.7.0"