Skip to content
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

Bump crates again #9653

Merged
merged 1 commit into from
Mar 2, 2021
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
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion op_crates/fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_fetch"
version = "0.22.1"
version = "0.22.2"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion op_crates/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_web"
version = "0.30.1"
version = "0.30.2"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
Expand Down
2 changes: 1 addition & 1 deletion op_crates/websocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_websocket"
version = "0.5.1"
version = "0.5.2"
edition = "2018"
description = "Implementation of WebSocket API for Deno"
authors = ["the Deno authors"]
Expand Down
14 changes: 7 additions & 7 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_runtime"
version = "0.9.1"
version = "0.9.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -20,9 +20,9 @@ path = "examples/hello_runtime.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.80.1" }
deno_crypto = { path = "../op_crates/crypto", version = "0.14.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.1" }
deno_web = { path = "../op_crates/web", version = "0.30.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.5.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.2" }
deno_web = { path = "../op_crates/web", version = "0.30.2" }
deno_websocket = { path = "../op_crates/websocket", version = "0.5.2" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.1.0" }

[target.'cfg(windows)'.build-dependencies]
Expand All @@ -32,9 +32,9 @@ winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.80.1" }
deno_crypto = { path = "../op_crates/crypto", version = "0.14.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.1" }
deno_web = { path = "../op_crates/web", version = "0.30.1" }
deno_websocket = { path = "../op_crates/websocket", version = "0.5.1" }
deno_fetch = { path = "../op_crates/fetch", version = "0.22.2" }
deno_web = { path = "../op_crates/web", version = "0.30.2" }
deno_websocket = { path = "../op_crates/websocket", version = "0.5.2" }
deno_webgpu = { path = "../op_crates/webgpu", version = "0.1.0" }

atty = "0.2.14"
Expand Down