summaryrefslogtreecommitdiff
path: root/tools/cut_a_release.md
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2021-08-17 06:03:33 -0400
committerGitHub <noreply@github.com>2021-08-17 12:03:33 +0200
commit5d24ddf9b21213f19136b11b1b5862098b2c688c (patch)
treeb48766a71002e0a084eab32d056200cd45e7f094 /tools/cut_a_release.md
parentaf97535b7cc64bf4586da77fc0afa146230e758c (diff)
chore: sort items in Releases.md for 1.13.1 release (#11734)
Diffstat (limited to 'tools/cut_a_release.md')
-rw-r--r--tools/cut_a_release.md29
1 files changed, 17 insertions, 12 deletions
diff --git a/tools/cut_a_release.md b/tools/cut_a_release.md
index ac186db92..4eb601698 100644
--- a/tools/cut_a_release.md
+++ b/tools/cut_a_release.md
@@ -45,22 +45,27 @@ between the crates, it must be done in specific order:
- `deno_core` - all crates depend on `deno_core` so it must always be published
first
- `bench_util`
-- crates in `ext/` directory
- - `deno_net`, `deno_websocket` and `deno_fetch` depend on `deno_tls`, so the
- latter must be bumped and released first
- - `deno_fetch`, `deno_crypto`, `deno_timers` and `deno_webstorage` depend on
- `deno_web`, so the latter must be bumped and released first
- - `deno_url` depends on `deno_webidl`, so the latter must be bumped and
- released first
- - `deno_timers` depends on `deno_url`, so the latter must be bumped and
- released first
- - `deno_http` depends on `deno_websocket`, so the latter must be bumped and
- released first
+- crates in `ext/` directory, publish in the following order:
+ - broadcast_channel
+ - console
+ - ffi
+ - tls
+ - web
+ - webgpu
+ - webidl
+ - websocket
+ - webstorage
+ - crypto
+ - fetch
+ - http
+ - net
+ - url
+ - timers
- `runtime` - this crate depends on `deno_core` and all crates in `ext/`
directory
If there are any problems when you publish, that require you to change the code,
-then after applying the fixes they should be commited and pushed to the PR.
+then after applying the fixes they should be committed and pushed to the PR.
4. Once all crates are published merge the PR.