Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
Update wasm-bindgen to the latest version and bump versions
  • Loading branch information
ranile committed Apr 13, 2022
1 parent 060b4d6 commit 355ce5a
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 26 deletions.
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@ edition = "2018"
license = "MIT/Apache-2.0"
name = "gloo"
readme = "README.md"
version = "0.6.1"
version = "0.7.0"
repository = "https://github.com/rustwasm/gloo"
homepage = "https://gloo-rs.web.app/"
documentation = "https://docs.rs/gloo/"
categories = ["api-bindings", "wasm"]

[dependencies]
gloo-timers = { version = "0.2.0", path = "crates/timers" }
gloo-events = { version = "0.1.0", path = "crates/events" }
gloo-file = { version = "0.2.0", path = "crates/file" }
gloo-dialogs = { version = "0.1.0", path = "crates/dialogs" }
gloo-storage = { version = "0.2.0", path = "crates/storage" }
gloo-render = { version = "0.1.0", path = "crates/render" }
gloo-console = { version = "0.2.1", path = "crates/console" }
gloo-utils = { version = "0.1.1", path = "crates/utils" }
gloo-history = { version = "0.1.0", path = "crates/history" }
gloo-worker = { version = "0.1.0", path = "crates/worker" }
gloo-net = { version = "0.1.0", path = "crates/net" }
gloo-timers = { version = "0.2", path = "crates/timers" }
gloo-events = { version = "0.1", path = "crates/events" }
gloo-file = { version = "0.2", path = "crates/file" }
gloo-dialogs = { version = "0.1", path = "crates/dialogs" }
gloo-storage = { version = "0.2", path = "crates/storage" }
gloo-render = { version = "0.1", path = "crates/render" }
gloo-console = { version = "0.2", path = "crates/console" }
gloo-utils = { version = "0.1", path = "crates/utils" }
gloo-history = { version = "0.1", path = "crates/history" }
gloo-worker = { version = "0.1", path = "crates/worker" }
gloo-net = { version = "0.2", path = "crates/net" }

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion crates/console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-console"
description = "Convenience crate for working with browser's console"
version = "0.2.1"
version = "0.2.2"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/dialogs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-dialogs"
description = "Convenience crate for working with dialogs in browser"
version = "0.1.0"
version = "0.1.1"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-events"
description = "Convenience crate for working with DOM event listeners"
version = "0.1.1"
version = "0.1.2"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -11,7 +11,7 @@ homepage = "https://github.com/rustwasm/gloo"
categories = ["api-bindings", "asynchronous", "web-programming", "wasm"]

[dependencies]
wasm-bindgen = "0.2.54"
wasm-bindgen = "0.2"

[dependencies.web-sys]
version = "0.3.31"
Expand Down
4 changes: 2 additions & 2 deletions crates/file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-file"
description = "Convenience crate for working with JavaScript files and blobs"
version = "0.2.1"
version = "0.2.2"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -14,7 +14,7 @@ categories = ["api-bindings", "asynchronous", "wasm"]
features = ["futures"]

[dependencies]
wasm-bindgen = "0.2.54"
wasm-bindgen = "0.2"
js-sys = "0.3.31"
gloo-events = { path = "../events", version = "0.1" }
mime = { version = "0.3.13", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/history/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gloo-history"
version = "0.1.0"
version = "0.1.1"
description = "Universal Session History"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gloo-net"
version = "0.1.0"
version = "0.2.0"
authors = ["Rust and WebAssembly Working Group", "Muhammad Hamza <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/render/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-render"
description = "Convenience crate for working with browser's requestAnimationFrame"
version = "0.1.0"
version = "0.1.1"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-storage"
description = "Convenience crate for working with local and session storage in browser"
version = "0.2.0"
version = "0.2.1"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/timers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "gloo-timers"
description = "Convenience crate for working with JavaScript timers"
version = "0.2.3"
version = "0.2.4"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -14,7 +14,7 @@ categories = ["api-bindings", "asynchronous", "wasm"]
features = ["futures"]

[dependencies]
wasm-bindgen = "0.2.54"
wasm-bindgen = "0.2"
js-sys = "0.3.31"
futures-core = { version = "0.3", optional = true }
futures-channel = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gloo-utils"
version = "0.1.2"
version = "0.1.3"
edition = "2018"
description = "Convenience crate for common `web_sys` features"
authors = ["Rust and WebAssembly Working Group"]
Expand Down
2 changes: 1 addition & 1 deletion crates/worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gloo-worker"
version = "0.1.0"
version = "0.1.1"
authors = ["Rust and WebAssembly Working Group"]
edition = "2018"
readme = "README.md"
Expand Down

0 comments on commit 355ce5a

Please sign in to comment.