summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/cut_a_release.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/cut_a_release.md b/tools/cut_a_release.md
index 8c9160649..54c453bfa 100644
--- a/tools/cut_a_release.md
+++ b/tools/cut_a_release.md
@@ -16,7 +16,7 @@ cut.**
## Updating the main repo
-1. Create a PR that bumps versions of all crates in `extensions` and `runtime`
+1. Create a PR that bumps versions of all crates in `ext` and `runtime`
directories.
To determine if you should bump a crate a minor version instead of a patch
@@ -45,7 +45,7 @@ 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 `extensions/` directory
+- 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
@@ -56,7 +56,7 @@ between the crates, it must be done in specific order:
released first
- `deno_http` depends on `deno_websocket`, so the latter must be bumped and
released first
-- `runtime` - this crate depends on `deno_core` and all crates in `extensions/`
+- `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,