Skip to content

Commit 615717b

Browse files
authored
chore: release crates for v1.17.1 (#13179)
1 parent 8547a37 commit 615717b

File tree

21 files changed

+112
-112
lines changed

21 files changed

+112
-112
lines changed

Cargo.lock

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bench_util/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
[package]
33
name = "deno_bench_util"
4-
version = "0.23.0"
4+
version = "0.24.0"
55
authors = ["the Deno authors"]
66
edition = "2021"
77
license = "MIT"
@@ -14,7 +14,7 @@ description = "Bench and profiling utilities for deno crates"
1414

1515
[dependencies]
1616
bencher = "0.1"
17-
deno_core = { version = "0.111.0", path = "../core" }
17+
deno_core = { version = "0.112.0", path = "../core" }
1818
tokio = { version = "1.10.1", features = ["full"] }
1919

2020
[[bench]]

cli/Cargo.toml

+13-13
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ harness = false
2020
path = "./bench/main.rs"
2121

2222
[build-dependencies]
23-
deno_broadcast_channel = { version = "0.23.0", path = "../ext/broadcast_channel" }
24-
deno_console = { version = "0.29.0", path = "../ext/console" }
25-
deno_core = { version = "0.111.0", path = "../core" }
26-
deno_crypto = { version = "0.43.0", path = "../ext/crypto" }
27-
deno_fetch = { version = "0.52.0", path = "../ext/fetch" }
28-
deno_net = { version = "0.21.0", path = "../ext/net" }
29-
deno_url = { version = "0.29.0", path = "../ext/url" }
30-
deno_web = { version = "0.60.0", path = "../ext/web" }
31-
deno_webgpu = { version = "0.30.0", path = "../ext/webgpu" }
32-
deno_websocket = { version = "0.34.0", path = "../ext/websocket" }
33-
deno_webstorage = { version = "0.24.0", path = "../ext/webstorage" }
23+
deno_broadcast_channel = { version = "0.24.0", path = "../ext/broadcast_channel" }
24+
deno_console = { version = "0.30.0", path = "../ext/console" }
25+
deno_core = { version = "0.112.0", path = "../core" }
26+
deno_crypto = { version = "0.44.0", path = "../ext/crypto" }
27+
deno_fetch = { version = "0.53.0", path = "../ext/fetch" }
28+
deno_net = { version = "0.22.0", path = "../ext/net" }
29+
deno_url = { version = "0.30.0", path = "../ext/url" }
30+
deno_web = { version = "0.61.0", path = "../ext/web" }
31+
deno_webgpu = { version = "0.31.0", path = "../ext/webgpu" }
32+
deno_websocket = { version = "0.35.0", path = "../ext/websocket" }
33+
deno_webstorage = { version = "0.25.0", path = "../ext/webstorage" }
3434
regex = "=1.5.4"
3535
serde = { version = "=1.0.130", features = ["derive"] }
3636

@@ -40,11 +40,11 @@ winres = "=0.1.11"
4040

4141
[dependencies]
4242
deno_ast = { version = "0.7.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
43-
deno_core = { version = "0.111.0", path = "../core" }
43+
deno_core = { version = "0.112.0", path = "../core" }
4444
deno_doc = "0.24.0"
4545
deno_graph = "0.16.0"
4646
deno_lint = { version = "0.20.0", features = ["docs"] }
47-
deno_runtime = { version = "0.37.0", path = "../runtime" }
47+
deno_runtime = { version = "0.38.0", path = "../runtime" }
4848

4949
atty = "=0.2.14"
5050
base64 = "=0.13.0"

core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
[package]
33
name = "deno_core"
4-
version = "0.111.0"
4+
version = "0.112.0"
55
authors = ["the Deno authors"]
66
edition = "2021"
77
license = "MIT"
@@ -23,7 +23,7 @@ parking_lot = "0.11.1"
2323
pin-project = "1.0.7"
2424
serde = { version = "1.0.129", features = ["derive"] }
2525
serde_json = { version = "1.0.66", features = ["preserve_order"] }
26-
serde_v8 = { version = "0.22.0", path = "../serde_v8" }
26+
serde_v8 = { version = "0.23.0", path = "../serde_v8" }
2727
url = { version = "2.2.2", features = ["serde"] }
2828
v8 = "0.36.0"
2929

ext/broadcast_channel/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_broadcast_channel"
5-
version = "0.23.0"
5+
version = "0.24.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -15,6 +15,6 @@ path = "lib.rs"
1515

1616
[dependencies]
1717
async-trait = "0.1"
18-
deno_core = { version = "0.111.0", path = "../../core" }
18+
deno_core = { version = "0.112.0", path = "../../core" }
1919
tokio = { version = "1.10.1", features = ["full"] }
2020
uuid = { version = "0.8.2", features = ["v4"] }

ext/console/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_console"
5-
version = "0.29.0"
5+
version = "0.30.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -14,4 +14,4 @@ description = "Implementation of Console API for Deno"
1414
path = "lib.rs"
1515

1616
[dependencies]
17-
deno_core = { version = "0.111.0", path = "../../core" }
17+
deno_core = { version = "0.112.0", path = "../../core" }

ext/crypto/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_crypto"
5-
version = "0.43.0"
5+
version = "0.44.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -17,8 +17,8 @@ path = "lib.rs"
1717
aes = "0.7.5"
1818
base64 = "0.13.0"
1919
block-modes = "0.8.1"
20-
deno_core = { version = "0.111.0", path = "../../core" }
21-
deno_web = { version = "0.60.0", path = "../web" }
20+
deno_core = { version = "0.112.0", path = "../../core" }
21+
deno_web = { version = "0.61.0", path = "../web" }
2222
elliptic-curve = { version = "0.10.6", features = ["std", "pem"] }
2323
num-traits = "0.2.14"
2424
once_cell = "=1.9.0"

ext/fetch/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_fetch"
5-
version = "0.52.0"
5+
version = "0.53.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -16,8 +16,8 @@ path = "lib.rs"
1616
[dependencies]
1717
bytes = "1.1.0"
1818
data-url = "0.1.0"
19-
deno_core = { version = "0.111.0", path = "../../core" }
20-
deno_tls = { version = "0.16.0", path = "../tls" }
19+
deno_core = { version = "0.112.0", path = "../../core" }
20+
deno_tls = { version = "0.17.0", path = "../tls" }
2121
dyn-clone = "1"
2222
http = "0.2.4"
2323
reqwest = { version = "0.11.7", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }

ext/ffi/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_ffi"
5-
version = "0.16.0"
5+
version = "0.17.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -14,7 +14,7 @@ description = "Dynamic library ffi for deno"
1414
path = "lib.rs"
1515

1616
[dependencies]
17-
deno_core = { version = "0.111.0", path = "../../core" }
17+
deno_core = { version = "0.112.0", path = "../../core" }
1818
dlopen = "0.1.8"
1919
libffi = "2.0.0"
2020
serde = { version = "1.0.129", features = ["derive"] }

ext/http/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_http"
5-
version = "0.21.0"
5+
version = "0.22.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -16,8 +16,8 @@ path = "lib.rs"
1616
[dependencies]
1717
base64 = "0.13.0"
1818
bytes = "1"
19-
deno_core = { version = "0.111.0", path = "../../core" }
20-
deno_websocket = { version = "0.34.0", path = "../websocket" }
19+
deno_core = { version = "0.112.0", path = "../../core" }
20+
deno_websocket = { version = "0.35.0", path = "../websocket" }
2121
hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] }
2222
ring = "0.16.20"
2323
serde = { version = "1.0.129", features = ["derive"] }

ext/net/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_net"
5-
version = "0.21.0"
5+
version = "0.22.0"
66
authors = ["the Deno authors"]
77
edition = "2021"
88
license = "MIT"
@@ -14,8 +14,8 @@ description = "Networking for Deno"
1414
path = "lib.rs"
1515

1616
[dependencies]
17-
deno_core = { version = "0.111.0", path = "../../core" }
18-
deno_tls = { version = "0.16.0", path = "../tls" }
17+
deno_core = { version = "0.112.0", path = "../../core" }
18+
deno_tls = { version = "0.17.0", path = "../tls" }
1919
log = "0.4.14"
2020
serde = { version = "1.0.129", features = ["derive"] }
2121
tokio = { version = "1.10.1", features = ["full"] }

0 commit comments

Comments
 (0)