diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-09-22 06:53:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-22 06:53:47 +1000 |
commit | 2a56cd545c890cd8085d4543cd44419d6f5aafb0 (patch) | |
tree | 16db86efc40d7ca158a4fab6497e832b74249768 | |
parent | 22a6f4166e1f3d019826715b7f63b3e2daf0b4e4 (diff) |
chore: bump crate versions for 1.14.1 (#12172)
-rw-r--r-- | Cargo.lock | 36 | ||||
-rw-r--r-- | bench_util/Cargo.toml | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 28 | ||||
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/broadcast_channel/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/console/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/crypto/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/fetch/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/ffi/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/http/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/net/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/timers/Cargo.toml | 12 | ||||
-rw-r--r-- | ext/tls/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/url/Cargo.toml | 8 | ||||
-rw-r--r-- | ext/web/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/webgpu/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/webidl/Cargo.toml | 4 | ||||
-rw-r--r-- | ext/websocket/Cargo.toml | 6 | ||||
-rw-r--r-- | ext/webstorage/Cargo.toml | 6 | ||||
-rw-r--r-- | runtime/Cargo.toml | 66 | ||||
-rw-r--r-- | tools/cut_a_release.md | 45 | ||||
-rwxr-xr-x[-rw-r--r--] | tools/release/01_bump_dependency_crate_versions.ts | 0 |
22 files changed, 135 insertions, 130 deletions
diff --git a/Cargo.lock b/Cargo.lock index 59e5f1c3d..b1cc616b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -676,7 +676,7 @@ dependencies = [ [[package]] name = "deno_bench_util" -version = "0.11.0" +version = "0.12.0" dependencies = [ "bencher", "deno_core", @@ -685,7 +685,7 @@ dependencies = [ [[package]] name = "deno_broadcast_channel" -version = "0.11.0" +version = "0.12.0" dependencies = [ "async-trait", "deno_core", @@ -695,14 +695,14 @@ dependencies = [ [[package]] name = "deno_console" -version = "0.17.0" +version = "0.18.0" dependencies = [ "deno_core", ] [[package]] name = "deno_core" -version = "0.99.0" +version = "0.100.0" dependencies = [ "anyhow", "futures", @@ -721,7 +721,7 @@ dependencies = [ [[package]] name = "deno_crypto" -version = "0.31.0" +version = "0.32.0" dependencies = [ "deno_core", "deno_web", @@ -756,7 +756,7 @@ dependencies = [ [[package]] name = "deno_fetch" -version = "0.40.0" +version = "0.41.0" dependencies = [ "bytes", "data-url", @@ -772,7 +772,7 @@ dependencies = [ [[package]] name = "deno_ffi" -version = "0.4.0" +version = "0.5.0" dependencies = [ "deno-libffi", "deno_core", @@ -802,7 +802,7 @@ dependencies = [ [[package]] name = "deno_http" -version = "0.9.0" +version = "0.10.0" dependencies = [ "base64 0.13.0", "bytes", @@ -834,7 +834,7 @@ dependencies = [ [[package]] name = "deno_net" -version = "0.9.0" +version = "0.10.0" dependencies = [ "deno_core", "deno_tls", @@ -847,7 +847,7 @@ dependencies = [ [[package]] name = "deno_runtime" -version = "0.25.0" +version = "0.26.0" dependencies = [ "atty", "deno_broadcast_channel", @@ -892,7 +892,7 @@ dependencies = [ [[package]] name = "deno_timers" -version = "0.15.0" +version = "0.16.0" dependencies = [ "deno_bench_util", "deno_core", @@ -904,7 +904,7 @@ dependencies = [ [[package]] name = "deno_tls" -version = "0.4.0" +version = "0.5.0" dependencies = [ "deno_core", "lazy_static", @@ -918,7 +918,7 @@ dependencies = [ [[package]] name = "deno_url" -version = "0.17.0" +version = "0.18.0" dependencies = [ "deno_bench_util", "deno_core", @@ -930,7 +930,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.48.0" +version = "0.49.0" dependencies = [ "async-trait", "base64 0.13.0", @@ -943,7 +943,7 @@ dependencies = [ [[package]] name = "deno_webgpu" -version = "0.18.0" +version = "0.19.0" dependencies = [ "deno_core", "serde", @@ -954,14 +954,14 @@ dependencies = [ [[package]] name = "deno_webidl" -version = "0.17.0" +version = "0.18.0" dependencies = [ "deno_core", ] [[package]] name = "deno_websocket" -version = "0.22.0" +version = "0.23.0" dependencies = [ "deno_core", "deno_tls", @@ -975,7 +975,7 @@ dependencies = [ [[package]] name = "deno_webstorage" -version = "0.12.0" +version = "0.13.0" dependencies = [ "deno_core", "deno_web", diff --git a/bench_util/Cargo.toml b/bench_util/Cargo.toml index 1be3ad825..8cb3146c9 100644 --- a/bench_util/Cargo.toml +++ b/bench_util/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. [package] name = "deno_bench_util" -version = "0.11.0" +version = "0.12.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,7 +14,7 @@ description = "Bench and profiling utilities for deno crates" [dependencies] bencher = "0.1" -deno_core = { version = "0.99.0", path = "../core" } +deno_core = { version = "0.100.0", path = "../core" } tokio = { version = "1.10.1", features = ["full"] } [[bench]] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index feeb1aab4..a999ce8c4 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -20,17 +20,17 @@ harness = false path = "./bench/main.rs" [build-dependencies] -deno_broadcast_channel = { version = "0.11.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.17.0", path = "../ext/console" } -deno_core = { version = "0.99.0", path = "../core" } -deno_crypto = { version = "0.31.0", path = "../ext/crypto" } -deno_fetch = { version = "0.40.0", path = "../ext/fetch" } -deno_net = { version = "0.9.0", path = "../ext/net" } -deno_url = { version = "0.17.0", path = "../ext/url" } -deno_web = { version = "0.48.0", path = "../ext/web" } -deno_webgpu = { version = "0.18.0", path = "../ext/webgpu" } -deno_websocket = { version = "0.22.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.12.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.12.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.18.0", path = "../ext/console" } +deno_core = { version = "0.100.0", path = "../core" } +deno_crypto = { version = "0.32.0", path = "../ext/crypto" } +deno_fetch = { version = "0.41.0", path = "../ext/fetch" } +deno_net = { version = "0.10.0", path = "../ext/net" } +deno_url = { version = "0.18.0", path = "../ext/url" } +deno_web = { version = "0.49.0", path = "../ext/web" } +deno_webgpu = { version = "0.19.0", path = "../ext/webgpu" } +deno_websocket = { version = "0.23.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.13.0", path = "../ext/webstorage" } regex = "1.5.4" serde = { version = "1.0.129", features = ["derive"] } @@ -40,12 +40,12 @@ winres = "0.1.11" [dependencies] deno_ast = { version = "0.2.0", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] } -deno_core = { version = "0.99.0", path = "../core" } +deno_core = { version = "0.100.0", path = "../core" } deno_doc = "0.14.0" deno_graph = "0.5.0" deno_lint = { version = "0.16.0", features = ["docs"] } -deno_runtime = { version = "0.25.0", path = "../runtime" } -deno_tls = { version = "0.4.0", path = "../ext/tls" } +deno_runtime = { version = "0.26.0", path = "../runtime" } +deno_tls = { version = "0.5.0", path = "../ext/tls" } atty = "0.2.14" base64 = "0.13.0" diff --git a/core/Cargo.toml b/core/Cargo.toml index afa31af0d..4f8b9954c 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.99.0" +version = "0.100.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" diff --git a/ext/broadcast_channel/Cargo.toml b/ext/broadcast_channel/Cargo.toml index 12bd0c77d..92dbd8729 100644 --- a/ext/broadcast_channel/Cargo.toml +++ b/ext/broadcast_channel/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_broadcast_channel" -version = "0.11.0" +version = "0.12.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -15,6 +15,6 @@ path = "lib.rs" [dependencies] async-trait = "0.1" -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } tokio = { version = "1.10.1", features = ["full"] } uuid = { version = "0.8.2", features = ["v4"] } diff --git a/ext/console/Cargo.toml b/ext/console/Cargo.toml index 3fbb1da3a..639dd21d4 100644 --- a/ext/console/Cargo.toml +++ b/ext/console/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_console" -version = "0.17.0" +version = "0.18.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,4 +14,4 @@ description = "Implementation of Console API for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 74be02b7f..d4f94dedf 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_crypto" -version = "0.31.0" +version = "0.32.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,8 +14,8 @@ description = "Web Cryptography API implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } -deno_web = { version = "0.48.0", path = "../web" } +deno_core = { version = "0.100.0", path = "../../core" } +deno_web = { version = "0.49.0", path = "../web" } lazy_static = "1.4.0" num-traits = "0.2.14" rand = "0.8.4" diff --git a/ext/fetch/Cargo.toml b/ext/fetch/Cargo.toml index 0b41b56c3..c94461649 100644 --- a/ext/fetch/Cargo.toml +++ b/ext/fetch/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_fetch" -version = "0.40.0" +version = "0.41.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -16,8 +16,8 @@ path = "lib.rs" [dependencies] bytes = "1.1.0" data-url = "0.1.0" -deno_core = { version = "0.99.0", path = "../../core" } -deno_tls = { version = "0.4.0", path = "../tls" } +deno_core = { version = "0.100.0", path = "../../core" } +deno_tls = { version = "0.5.0", path = "../tls" } http = "0.2.4" reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } serde = { version = "1.0.129", features = ["derive"] } diff --git a/ext/ffi/Cargo.toml b/ext/ffi/Cargo.toml index 20a71d570..e9f289f62 100644 --- a/ext/ffi/Cargo.toml +++ b/ext/ffi/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_ffi" -version = "0.4.0" +version = "0.5.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,7 +14,7 @@ description = "Dynamic library ffi for deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } dlopen = "0.1.8" libffi = { version = "=0.0.7", package = "deno-libffi" } serde = { version = "1.0.129", features = ["derive"] } diff --git a/ext/http/Cargo.toml b/ext/http/Cargo.toml index db4bd9998..32bba314b 100644 --- a/ext/http/Cargo.toml +++ b/ext/http/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_http" -version = "0.9.0" +version = "0.10.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -16,8 +16,8 @@ path = "lib.rs" [dependencies] base64 = "0.13.0" bytes = "1" -deno_core = { version = "0.99.0", path = "../../core" } -deno_websocket = { version = "0.22.0", path = "../websocket" } +deno_core = { version = "0.100.0", path = "../../core" } +deno_websocket = { version = "0.23.0", path = "../websocket" } hyper = { version = "0.14.9", features = ["server", "stream", "http1", "http2", "runtime"] } ring = "0.16.20" serde = { version = "1.0.129", features = ["derive"] } diff --git a/ext/net/Cargo.toml b/ext/net/Cargo.toml index 23f71f141..92cad8309 100644 --- a/ext/net/Cargo.toml +++ b/ext/net/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_net" -version = "0.9.0" +version = "0.10.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,8 +14,8 @@ description = "Networking for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } -deno_tls = { version = "0.4.0", path = "../tls" } +deno_core = { version = "0.100.0", path = "../../core" } +deno_tls = { version = "0.5.0", path = "../tls" } log = "0.4.14" serde = { version = "1.0.129", features = ["derive"] } tokio = { version = "1.10.1", features = ["full"] } diff --git a/ext/timers/Cargo.toml b/ext/timers/Cargo.toml index 9762e1403..aa195fcee 100644 --- a/ext/timers/Cargo.toml +++ b/ext/timers/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_timers" -version = "0.15.0" +version = "0.16.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,14 +14,14 @@ description = "Timers API implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } tokio = { version = "1.10.1", features = ["full"] } [dev-dependencies] -deno_bench_util = { version = "0.11.0", path = "../../bench_util" } -deno_url = { version = "0.17.0", path = "../url" } -deno_web = { version = "0.48.0", path = "../web" } -deno_webidl = { version = "0.17.0", path = "../webidl" } +deno_bench_util = { version = "0.12.0", path = "../../bench_util" } +deno_url = { version = "0.18.0", path = "../url" } +deno_web = { version = "0.49.0", path = "../web" } +deno_webidl = { version = "0.18.0", path = "../webidl" } [[bench]] name = "timers_ops" diff --git a/ext/tls/Cargo.toml b/ext/tls/Cargo.toml index 05c88da3d..32a631f31 100644 --- a/ext/tls/Cargo.toml +++ b/ext/tls/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_tls" -version = "0.4.0" +version = "0.5.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,7 +14,7 @@ description = "TLS for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } lazy_static = "1.4.0" reqwest = { version = "0.11.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] } rustls = { version = "0.19.1", features = ["dangerous_configuration"] } diff --git a/ext/url/Cargo.toml b/ext/url/Cargo.toml index c35609c7e..41d176f33 100644 --- a/ext/url/Cargo.toml +++ b/ext/url/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_url" -version = "0.17.0" +version = "0.18.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,14 +14,14 @@ description = "URL API implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } serde = { version = "1.0.129", features = ["derive"] } serde_repr = "0.1.7" urlpattern = "0.1.2" [dev-dependencies] -deno_bench_util = { version = "0.11.0", path = "../../bench_util" } -deno_webidl = { version = "0.17.0", path = "../webidl" } +deno_bench_util = { version = "0.12.0", path = "../../bench_util" } +deno_webidl = { version = "0.18.0", path = "../webidl" } [[bench]] name = "url_ops" diff --git a/ext/web/Cargo.toml b/ext/web/Cargo.toml index 7858fa843..c60e404f4 100644 --- a/ext/web/Cargo.toml +++ b/ext/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.48.0" +version = "0.49.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -16,7 +16,7 @@ path = "lib.rs" [dependencies] async-trait = "0.1.51" base64 = "0.13.0" -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } encoding_rs = "0.8.28" serde = "1.0.129" tokio = { version = "1.10.1", features = ["full"] } diff --git a/ext/webgpu/Cargo.toml b/ext/webgpu/Cargo.toml index a87d88943..e88939199 100644 --- a/ext/webgpu/Cargo.toml +++ b/ext/webgpu/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webgpu" -version = "0.18.0" +version = "0.19.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,7 +14,7 @@ description = "WebGPU implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } serde = { version = "1.0.129", features = ["derive"] } tokio = { version = "1.10.1", features = ["full"] } wgpu-core = { version = "0.10.1", features = ["trace"] } diff --git a/ext/webidl/Cargo.toml b/ext/webidl/Cargo.toml index 9455dc6ee..858288a37 100644 --- a/ext/webidl/Cargo.toml +++ b/ext/webidl/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webidl" -version = "0.17.0" +version = "0.18.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,4 +14,4 @@ description = "WebIDL implementation for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } +deno_core = { version = "0.100.0", path = "../../core" } diff --git a/ext/websocket/Cargo.toml b/ext/websocket/Cargo.toml index ca182321e..9382ecece 100644 --- a/ext/websocket/Cargo.toml +++ b/ext/websocket/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_websocket" -version = "0.22.0" +version = "0.23.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,8 +14,8 @@ description = "Implementation of WebSocket API for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } -deno_tls = { version = "0.4.0", path = "../tls" } +deno_core = { version = "0.100.0", path = "../../core" } +deno_tls = { version = "0.5.0", path = "../tls" } http = "0.2.4" hyper = { version = "0.14.12" } serde = { version = "1.0.129", features = ["derive"] } diff --git a/ext/webstorage/Cargo.toml b/ext/webstorage/Cargo.toml index d57cd94c1..2722d948d 100644 --- a/ext/webstorage/Cargo.toml +++ b/ext/webstorage/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_webstorage" -version = "0.12.0" +version = "0.13.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -14,7 +14,7 @@ description = "Implementation of WebStorage API for Deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.99.0", path = "../../core" } -deno_web = { version = "0.48.0", path = "../web" } +deno_core = { version = "0.100.0", path = "../../core" } +deno_web = { version = "0.49.0", path = "../web" } rusqlite = { version = "0.25.3", features = ["unlock_notify", "bundled"] } serde = { version = "1.0.129", features = ["derive"] } diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 2c123fcf3..f189a0541 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_runtime" -version = "0.25.0" +version = "0.26.0" authors = ["the Deno authors"] edition = "2018" license = "MIT" @@ -22,44 +22,44 @@ name = "hello_runtime" path = "examples/hello_runtime.rs" [build-dependencies] -deno_broadcast_channel = { version = "0.11.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.17.0", path = "../ext/console" } -deno_core = { version = "0.99.0", path = "../core" } -deno_crypto = { version = "0.31.0", path = "../ext/crypto" } -deno_fetch = { version = "0.40.0", path = "../ext/fetch" } -deno_ffi = { version = "0.4.0", path = "../ext/ffi" } -deno_http = { version = "0.9.0", path = "../ext/http" } -deno_net = { version = "0.9.0", path = "../ext/net" } -deno_timers = { version = "0.15.0", path = "../ext/timers" } -deno_tls = { version = "0.4.0", path = "../ext/tls" } -deno_url = { version = "0.17.0", path = "../ext/url" } -deno_web = { version = "0.48.0", path = "../ext/web" } -deno_webgpu = { version = "0.18.0", path = "../ext/webgpu" } -deno_webidl = { version = "0.17.0", path = "../ext/webidl" } -deno_websocket = { version = "0.22.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.12.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.12.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.18.0", path = "../ext/console" } +deno_core = { version = "0.100.0", path = "../core" } +deno_crypto = { version = "0.32.0", path = "../ext/crypto" } +deno_fetch = { version = "0.41.0", path = "../ext/fetch" } +deno_ffi = { version = "0.5.0", path = "../ext/ffi" } +deno_http = { version = "0.10.0", path = "../ext/http" } +deno_net = { version = "0.10.0", path = "../ext/net" } +deno_timers = { version = "0.16.0", path = "../ext/timers" } +deno_tls = { version = "0.5.0", path = "../ext/tls" } +deno_url = { version = "0.18.0", path = "../ext/url" } +deno_web = { version = "0.49.0", path = "../ext/web" } +deno_webgpu = { version = "0.19.0", path = "../ext/webgpu" } +deno_webidl = { version = "0.18.0", path = "../ext/webidl" } +deno_websocket = { version = "0.23.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.13.0", path = "../ext/webstorage" } [target.'cfg(windows)'.build-dependencies] winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_broadcast_channel = { version = "0.11.0", path = "../ext/broadcast_channel" } -deno_console = { version = "0.17.0", path = "../ext/console" } -deno_core = { version = "0.99.0", path = "../core" } -deno_crypto = { version = "0.31.0", path = "../ext/crypto" } -deno_fetch = { version = "0.40.0", path = "../ext/fetch" } -deno_ffi = { version = "0.4.0", path = "../ext/ffi" } -deno_http = { version = "0.9.0", path = "../ext/http" } -deno_net = { version = "0.9.0", path = "../ext/net" } -deno_timers = { version = "0.15.0", path = "../ext/timers" } -deno_tls = { version = "0.4.0", path = "../ext/tls" } -deno_url = { version = "0.17.0", path = "../ext/url" } -deno_web = { version = "0.48.0", path = "../ext/web" } -deno_webgpu = { version = "0.18.0", path = "../ext/webgpu" } -deno_webidl = { version = "0.17.0", path = "../ext/webidl" } -deno_websocket = { version = "0.22.0", path = "../ext/websocket" } -deno_webstorage = { version = "0.12.0", path = "../ext/webstorage" } +deno_broadcast_channel = { version = "0.12.0", path = "../ext/broadcast_channel" } +deno_console = { version = "0.18.0", path = "../ext/console" } +deno_core = { version = "0.100.0", path = "../core" } +deno_crypto = { version = "0.32.0", path = "../ext/crypto" } +deno_fetch = { version = "0.41.0", path = "../ext/fetch" } +deno_ffi = { version = "0.5.0", path = "../ext/ffi" } +deno_http = { version = "0.10.0", path = "../ext/http" } +deno_net = { version = "0.10.0", path = "../ext/net" } +deno_timers = { version = "0.16.0", path = "../ext/timers" } +deno_tls = { version = "0.5.0", path = "../ext/tls" } +deno_url = { version = "0.18.0", path = "../ext/url" } +deno_web = { version = "0.49.0", path = "../ext/web" } +deno_webgpu = { version = "0.19.0", path = "../ext/webgpu" } +deno_webidl = { version = "0.18.0", path = "../ext/webidl" } +deno_websocket = { version = "0.23.0", path = "../ext/websocket" } +deno_webstorage = { version = "0.13.0", path = "../ext/webstorage" } atty = "0.2.14" dlopen = "0.1.8" diff --git a/tools/cut_a_release.md b/tools/cut_a_release.md index 5ce421d8b..a4fed35d1 100644 --- a/tools/cut_a_release.md +++ b/tools/cut_a_release.md @@ -6,25 +6,30 @@ cut.** ## Updating `deno_std` -1. Open a PR on the `deno_std` repo that bumps the version in `version.ts` and +1. Checkout a branch for releasing `std` (e.g. `release_#.#.#`). + +2. Open a PR on the `deno_std` repo that bumps the version in `version.ts` and updates `Releases.md` -2. Before merging the PR, make sure that all tests pass when run using binary +3. Before merging the PR, make sure that all tests pass when run using binary produced from bumping crates (point 3. from below). -3. Create a tag with the version number (_without_ `v` prefix). +4. Create a tag with the version number (_without_ `v` prefix). ## Updating the main repo -1. Run `./tools/release/01_bump_dependency_crate_versions.ts` to increase the +1. Checkout a branch for releasing crate dependencies (e.g. `deps_#.#.#`). + +2. Run `./tools/release/01_bump_dependency_crate_versions.ts` to increase the minor versions of all crates in the `bench_util`, `core`, `ext`, and `runtime` directories. -2. Create a PR for this change. +3. Commit these changes with a commit message like + `chore: bump crate version for #.#.#` and create a PR for this change. -3. Make sure CI pipeline passes (DO NOT merge yet). +4. Make sure CI pipeline passes (DO NOT merge yet). -4. Run `./tools/release/02_publish_dependency_crates.ts` to publish these bumped +5. Run `./tools/release/02_publish_dependency_crates.ts` to publish these bumped crates to `crates.io` **Make sure that `cargo` is logged on with a user that has permissions to @@ -34,35 +39,35 @@ cut.** code, then after applying the fixes they should be committed and pushed to the PR. -5. Once all crates are published merge the PR. +6. Once all crates are published merge the PR. -6. Run `./tools/release/03_bump_cli_version.ts` to bump the CLI version. +7. Run `./tools/release/03_bump_cli_version.ts` to bump the CLI version. -7. Use the output of the above command to update `Releases.md` +8. Use the output of the above command to update `Releases.md` -8. Create a PR for these changes. +9. Create a PR for these changes. -9. Make sure CI pipeline passes. +10. Make sure CI pipeline passes. -10. Publish `cli` crate to `crates.io` +11. Publish `cli` crate to `crates.io` -11. Merge the PR. +12. Merge the PR. -12. Create a tag with the version number (with `v` prefix). +13. Create a tag with the version number (with `v` prefix). -13. Wait for CI pipeline on the created tag branch to pass. +14. Wait for CI pipeline on the created tag branch to pass. The CI pipeline will create a release draft on GitHub (https://github.com/denoland/deno/releases). -14. Upload Apple M1 build to the release draft & to dl.deno.land. +15. Upload Apple M1 build to the release draft & to dl.deno.land. -15. Publish the release on Github +16. Publish the release on Github -16. Update the Deno version on the website by updating +17. Update the Deno version on the website by updating https://github.com/denoland/deno_website2/blob/main/versions.json. -17. Push a new tag to [`manual`](https://github.com/denoland/manual). The tag +18. Push a new tag to [`manual`](https://github.com/denoland/manual). The tag must match the CLI tag; you don't need to create dedicated commit for that purpose, it's enough to tag the latest commit in that repo. diff --git a/tools/release/01_bump_dependency_crate_versions.ts b/tools/release/01_bump_dependency_crate_versions.ts index b5ee6968d..b5ee6968d 100644..100755 --- a/tools/release/01_bump_dependency_crate_versions.ts +++ b/tools/release/01_bump_dependency_crate_versions.ts |