From de706961dc4c3eca0cb27155089642336348c910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 11 May 2021 23:14:24 +0200 Subject: chore: release crates (#10596) --- 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 | 2 +- 11 files changed, 22 insertions(+), 22 deletions(-) (limited to 'extensions') diff --git a/extensions/console/Cargo.toml b/extensions/console/Cargo.toml index a3964a1f4..64f7b3ed4 100644 --- a/extensions/console/Cargo.toml +++ b/extensions/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.5.0" +version = "0.6.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } diff --git a/extensions/crypto/Cargo.toml b/extensions/crypto/Cargo.toml index 91f60aa9c..1fe5c7967 100644 --- a/extensions/crypto/Cargo.toml +++ b/extensions/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.19.0" +version = "0.20.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } rand = "0.8.3" diff --git a/extensions/fetch/Cargo.toml b/extensions/fetch/Cargo.toml index d2ed10714..b4ac68924 100644 --- a/extensions/fetch/Cargo.toml +++ b/extensions/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.27.0" +version = "0.28.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.86.0", path = "../../core" } -deno_file = { version = "0.4.0", path = "../file" } +deno_core = { version = "0.87.0", path = "../../core" } +deno_file = { version = "0.5.0", path = "../file" } http = "0.2.3" reqwest = { version = "0.11.2", 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 2338fab7c..594e99456 100644 --- a/extensions/file/Cargo.toml +++ b/extensions/file/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_file" -version = "0.4.0" +version = "0.5.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/extensions/timers/Cargo.toml b/extensions/timers/Cargo.toml index ead1ae00c..567e5a28d 100644 --- a/extensions/timers/Cargo.toml +++ b/extensions/timers/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_timers" -version = "0.3.0" +version = "0.4.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } tokio = { version = "1.4.0", features = ["full"] } diff --git a/extensions/url/Cargo.toml b/extensions/url/Cargo.toml index de7a3cb0a..b6849ab19 100644 --- a/extensions/url/Cargo.toml +++ b/extensions/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.5.0" +version = "0.6.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } idna = "0.2.2" 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 5608fadbd..aeef8ca80 100644 --- a/extensions/web/Cargo.toml +++ b/extensions/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.35.0" +version = "0.36.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } [dev-dependencies] futures = "0.3.13" diff --git a/extensions/webgpu/Cargo.toml b/extensions/webgpu/Cargo.toml index 8a18b8d1a..bfd688ec9 100644 --- a/extensions/webgpu/Cargo.toml +++ b/extensions/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.6.0" +version = "0.7.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } tokio = { version = "1.4.0", features = ["full"] } serde = { version = "1.0.125", features = ["derive"] } wgpu-core = { version = "0.8.0", features = ["trace"] } diff --git a/extensions/webidl/Cargo.toml b/extensions/webidl/Cargo.toml index 90a3e2cb9..718d637e7 100644 --- a/extensions/webidl/Cargo.toml +++ b/extensions/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.5.0" +version = "0.6.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } diff --git a/extensions/websocket/Cargo.toml b/extensions/websocket/Cargo.toml index 516401204..818271a74 100644 --- a/extensions/websocket/Cargo.toml +++ b/extensions/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.10.0" +version = "0.11.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.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } http = "0.2.3" serde = { version = "1.0.125", features = ["derive"] } tokio = { version = "1.4.0", features = ["full"] } diff --git a/extensions/webstorage/Cargo.toml b/extensions/webstorage/Cargo.toml index acfaf6a16..918c41ad8 100644 --- a/extensions/webstorage/Cargo.toml +++ b/extensions/webstorage/Cargo.toml @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.86.0", path = "../../core" } +deno_core = { version = "0.87.0", path = "../../core" } rusqlite = { version = "0.25.0", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.125", features = ["derive"] } -- cgit v1.2.3