From 5887dd3c953e07a21768fcc75e65747df75185f3 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Mon, 17 May 2021 16:21:10 +0200 Subject: chore: release crates (#10661) For the Deno 1.10.2 release. --- extensions/console/Cargo.toml | 4 ++-- extensions/crypto/Cargo.toml | 4 ++-- extensions/fetch/Cargo.toml | 6 +++--- extensions/file/Cargo.toml | 4 ++-- extensions/timers/Cargo.toml | 4 ++-- extensions/url/Cargo.toml | 4 ++-- extensions/web/Cargo.toml | 4 ++-- extensions/webgpu/Cargo.toml | 4 ++-- extensions/webidl/Cargo.toml | 4 ++-- extensions/websocket/Cargo.toml | 4 ++-- extensions/webstorage/Cargo.toml | 4 ++-- 11 files changed, 23 insertions(+), 23 deletions(-) (limited to 'extensions') diff --git a/extensions/console/Cargo.toml b/extensions/console/Cargo.toml index 64f7b3ed4..189d56500 100644 --- a/extensions/console/Cargo.toml +++ b/extensions/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.6.0" +version = "0.7.0" edition = "2018" description = "Implementation of Console API for Deno" authors = ["the Deno authors"] @@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml index 1fe5c7967..5295aa9f1 100644 --- a/extensions/crypto/Cargo.toml +++ b/extensions/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.20.0" +version = "0.21.0" edition = "2018" description = "Web Cryptography API implementation for Deno" authors = ["the Deno authors"] @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } rand = "0.8.3" diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml index 22ec9cf6d..83cd4ecdb 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.28.0" +version = "0.29.0" edition = "2018" description = "Fetch API implementation for Deno" authors = ["the Deno authors"] @@ -16,8 +16,8 @@ path = "lib.rs" [dependencies] bytes = "1.0.1" data-url = "0.1.0" -deno_core = { version = "0.87.0", path = "../../core" } -deno_file = { version = "0.5.0", path = "../file" } +deno_core = { version = "0.88.0", path = "../../core" } +deno_file = { version = "0.6.0", path = "../file" } http = "0.2.4" reqwest = { version = "0.11.3", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.125", features = ["derive"] } diff --git a/extensions/file/Cargo.toml b/extensions/file/Cargo.toml index 594e99456..cab6f5666 100644 --- a/extensions/file/Cargo.toml +++ b/extensions/file/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_file" -version = "0.5.0" +version = "0.6.0" edition = "2018" description = "File API implementation for Deno" authors = ["the Deno authors"] @@ -14,5 +14,5 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml index d5624bad5..d9bb23614 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_timers" -version = "0.4.0" +version = "0.5.0" edition = "2018" description = "Timers API implementation for Deno" authors = ["the Deno authors"] @@ -14,5 +14,5 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } tokio = { version = "1.6.0", features = ["full"] } diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml index 9c7b071fb..70a880e0d 100644 --- a/extensions/url/Cargo.toml +++ b/extensions/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.6.0" +version = "0.7.0" edition = "2018" description = "URL API implementation for Deno" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } idna = "0.2.3" percent-encoding = "2.1.0" serde = { version = "1.0.125", features = ["derive"] } diff --git a/extensions/web/Cargo.toml b/extensions/web/Cargo.toml index 5159f9691..2e2d96675 100644 --- a/extensions/web/Cargo.toml +++ b/extensions/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.36.0" +version = "0.37.0" edition = "2018" description = "Collection of Web APIs" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } [dev-dependencies] futures = "0.3.15" diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index fb9ffce74..5ada950b7 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.7.0" +version = "0.8.0" edition = "2018" description = "WebGPU implementation for Deno" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } tokio = { version = "1.6.0", features = ["full"] } serde = { version = "1.0.125", features = ["derive"] } wgpu-core = { version = "0.8.1", features = ["trace"] } diff --git a/extensions/webidl/Cargo.toml b/extensions/webidl/Cargo.toml index 718d637e7..ad6b2d57b 100644 --- a/extensions/webidl/Cargo.toml +++ b/extensions/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.6.0" +version = "0.7.0" edition = "2018" description = "WebIDL implementation for Deno" authors = ["the Deno authors"] @@ -14,4 +14,4 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml index 566253f5e..a5a962e54 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.11.0" +version = "0.12.0" edition = "2018" description = "Implementation of WebSocket API for Deno" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } http = "0.2.3" serde = { version = "1.0.125", features = ["derive"] } tokio = { version = "1.6.0", features = ["full"] } diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml index 6f76546ed..ab0a6299e 100644 --- a/extensions/webstorage/Cargo.toml +++ b/extensions/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.1.0" +version = "0.2.0" edition = "2018" description = "Implementation of WebStorage API for Deno" authors = ["the Deno authors"] @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.87.0", path = "../../core" } +deno_core = { version = "0.88.0", path = "../../core" } rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.125", features = ["derive"] } -- cgit v1.2.3