summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-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.