diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-03-27 17:51:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 18:51:52 +0100 |
commit | 0e4d1cb5f9a3645f6da480b2b8540568fa69d675 (patch) | |
tree | 8d2a029a40d86f93110a825ab5d05c9bd28135da /tools/release/02_create_pr.ts | |
parent | 624e3a04e7eb92d5ce3536cec653d7aae92df5b5 (diff) |
feat(init): use jsr specifier for @std/assert (#23073)
This commit changes "deno init" subcommand to use "jsr:" specifier for
standard library "assert" module. It is unversioned, but we will change
it to `@^1` once `@std/assert` release version 1.0.
This allows us to start decoupling `deno` and `deno_std` release. The
release scripts have been updated to take that into account.
Diffstat (limited to 'tools/release/02_create_pr.ts')
-rwxr-xr-x | tools/release/02_create_pr.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/release/02_create_pr.ts b/tools/release/02_create_pr.ts index af3f81f02..5ef64cd14 100755 --- a/tools/release/02_create_pr.ts +++ b/tools/release/02_create_pr.ts @@ -36,7 +36,6 @@ function getPrBody() { `Please ensure:\n` + `- [ ] Target branch is correct (\`vX.XX\` if a patch release, \`main\` if minor)\n` + `- [ ] Crate versions are bumped correctly\n` + - `- [ ] deno_std version is incremented in the code (see \`cli/deno_std.rs\`)\n` + `- [ ] Releases.md is updated correctly (think relevancy and remove reverts)\n\n` + `To make edits to this PR:\n` + "```shell\n" + |