diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-12-14 17:11:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 17:11:17 +0100 |
commit | 8f8749095c0dc5e71104228de650f671674f6fdc (patch) | |
tree | 3d08aa31e745a161fbd31a3973897037772f0986 | |
parent | 3476d5434fa713f455e4c5d0bff66581065cc7f7 (diff) |
chore: release crates (#8760)
-rw-r--r-- | Cargo.lock | 10 | ||||
-rw-r--r-- | cli/Cargo.toml | 10 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | op_crates/crypto/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/fetch/Cargo.toml | 4 | ||||
-rw-r--r-- | op_crates/web/Cargo.toml | 4 | ||||
-rw-r--r-- | runtime/Cargo.toml | 18 |
7 files changed, 26 insertions, 26 deletions
diff --git a/Cargo.lock b/Cargo.lock index 13cb78c6e..b11ae0c56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -510,7 +510,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.71.0" +version = "0.72.0" dependencies = [ "anyhow", "futures", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "deno_crypto" -version = "0.5.0" +version = "0.6.0" dependencies = [ "deno_core", "rand 0.7.3", @@ -553,7 +553,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.14.0" +version = "0.15.0" dependencies = [ "deno_core", "reqwest", @@ -580,7 +580,7 @@ dependencies = [ [[package]] name = "deno_runtime" -version = "0.2.0" +version = "0.2.1" dependencies = [ "atty", "deno_core", @@ -622,7 +622,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.22.0" +version = "0.23.0" dependencies = [ "deno_core", "futures", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9f0dee413..8c24dc718 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -20,9 +20,9 @@ harness = false path = "./bench/main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.71.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.14.0" } -deno_web = { path = "../op_crates/web", version = "0.22.0" } +deno_core = { path = "../core", version = "0.72.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.15.0" } +deno_web = { path = "../op_crates/web", version = "0.23.0" } regex = "1.3.9" serde = { version = "1.0.116", features = ["derive"] } @@ -31,10 +31,10 @@ winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.71.0" } +deno_core = { path = "../core", version = "0.72.0" } deno_doc = "0.1.18" deno_lint = "0.2.13" -deno_runtime = { path = "../runtime", version = "0.2.0" } +deno_runtime = { path = "../runtime", version = "0.2.1" } atty = "0.2.14" base64 = "0.12.3" diff --git a/core/Cargo.toml b/core/Cargo.toml index 73eb18305..78d56703e 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.71.0" +version = "0.72.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/op_crates/crypto/Cargo.toml b/op_crates/crypto/Cargo.toml index 0bcb4e528..7631271e9 100644 --- a/op_crates/crypto/Cargo.toml +++ b/op_crates/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.5.0" +version = "0.6.0" edition = "2018" description = "Collection of WebCrypto APIs" authors = ["the Deno authors"] @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.71.0", path = "../../core" } +deno_core = { version = "0.72.0", path = "../../core" } rand = "0.7.3" diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml index 343357628..2a094f49c 100644 --- a/op_crates/fetch/Cargo.toml +++ b/op_crates/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.14.0" +version = "0.15.0" edition = "2018" description = "provides fetch Web API to deno_core" authors = ["the Deno authors"] @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.71.0", path = "../../core" } +deno_core = { version = "0.72.0", path = "../../core" } reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.116", features = ["derive"] } diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 18a5e85ea..60bcbeba3 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.22.0" +version = "0.23.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.71.0", path = "../../core" } +deno_core = { version = "0.72.0", path = "../../core" } idna = "0.2.0" serde = { version = "1.0.116", features = ["derive"] } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 262dda036..47b02bf25 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_runtime" -version = "0.2.0" +version = "0.2.1" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -18,20 +18,20 @@ name = "hello_runtime" path = "examples/hello_runtime.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.71.0" } -deno_crypto = { path = "../op_crates/crypto", version = "0.5.0" } -deno_web = { path = "../op_crates/web", version = "0.22.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.14.0" } +deno_core = { path = "../core", version = "0.72.0" } +deno_crypto = { path = "../op_crates/crypto", version = "0.6.0" } +deno_web = { path = "../op_crates/web", version = "0.23.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.15.0" } [target.'cfg(windows)'.build-dependencies] winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.71.0" } -deno_crypto = { path = "../op_crates/crypto", version = "0.5.0" } -deno_fetch = { path = "../op_crates/fetch", version = "0.14.0" } -deno_web = { path = "../op_crates/web", version = "0.22.0" } +deno_core = { path = "../core", version = "0.72.0" } +deno_crypto = { path = "../op_crates/crypto", version = "0.6.0" } +deno_fetch = { path = "../op_crates/fetch", version = "0.15.0" } +deno_web = { path = "../op_crates/web", version = "0.23.0" } atty = "0.2.14" dlopen = "0.1.8" |