diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-08-11 12:27:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 12:27:05 +0200 |
commit | a0285e2eb88f6254f6494b0ecd1878db3a3b2a58 (patch) | |
tree | 90671b004537e20f9493fd3277ffd21d30b39a0e /tools/cut_a_release.md | |
parent | 3a6994115176781b3a93d70794b1b81bc95e42b4 (diff) |
Rename extensions/ directory to ext/ (#11643)
Diffstat (limited to 'tools/cut_a_release.md')
-rw-r--r-- | tools/cut_a_release.md | 6 |
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, |