2021-04-20 11:00:14 -04:00
|
|
|
# Cutting a Deno release
|
|
|
|
|
|
|
|
**During this process `main` branch (or any other branch that you're creating
|
|
|
|
release from) should be frozen and no commits should land until the release is
|
|
|
|
cut.**
|
|
|
|
|
2021-06-22 10:39:44 -04:00
|
|
|
## Updating `deno_std`
|
|
|
|
|
|
|
|
1. Open a PR on the `deno_std` repo that bumps the version in `version.ts` and
|
|
|
|
updates `Releases.md`
|
2021-07-26 18:26:39 -04:00
|
|
|
|
|
|
|
2. Before merging the PR, make sure that all tests pass when run using binary
|
|
|
|
produced from bumping crates (point 3. from below).
|
|
|
|
|
|
|
|
3. Create a tag with the version number (_without_ `v` prefix).
|
2021-06-22 10:39:44 -04:00
|
|
|
|
|
|
|
## Updating the main repo
|
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
1. Run `./tools/release/01_bump_dependency_crate_versions.ts` to increase the
|
|
|
|
minor versions of all crates in the `bench_util`, `core`, `ext`, and
|
|
|
|
`runtime` directories.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
2. Create a PR for this change.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
3. Make sure CI pipeline passes (DO NOT merge yet).
|
|
|
|
|
|
|
|
4. Run `./tools/release/02_publish_dependency_crates.ts` to publish these bumped
|
|
|
|
crates to `crates.io`
|
2021-04-20 11:00:14 -04:00
|
|
|
|
|
|
|
**Make sure that `cargo` is logged on with a user that has permissions to
|
|
|
|
publish those crates.**
|
|
|
|
|
|
|
|
If there are any problems when you publish, that require you to change the code,
|
2021-08-17 06:03:33 -04:00
|
|
|
then after applying the fixes they should be committed and pushed to the PR.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
|
|
|
4. Once all crates are published merge the PR.
|
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
5. Run `./tools/release/03_bump_cli_version.ts` to bump the CLI version.
|
|
|
|
|
|
|
|
6. Use the output of the above command to update `Releases.md`
|
|
|
|
|
|
|
|
7. Create a PR for these changes.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
8. Make sure CI pipeline passes.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
9. Publish `cli` crate to `crates.io`
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
10. Merge the PR.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
11. Create a tag with the version number (with `v` prefix).
|
2021-04-20 11:00:14 -04:00
|
|
|
|
2021-08-25 09:02:22 -04:00
|
|
|
12. Wait for CI pipeline on the created tag branch to pass.
|
2021-04-20 11:00:14 -04:00
|
|
|
|
|
|
|
The CI pipeline will create a release draft on GitHub
|
|
|
|
(https://github.com/denoland/deno/releases).
|
|
|
|
|
|
|
|
11. Upload Apple M1 build to the release draft & to dl.deno.land.
|
|
|
|
|
|
|
|
12. Publish the release on Github
|
|
|
|
|
|
|
|
13. Update the Deno version on the website by updating
|
|
|
|
https://github.com/denoland/deno_website2/blob/main/versions.json.
|
2021-06-22 10:39:44 -04:00
|
|
|
|
2021-07-26 18:26:39 -04:00
|
|
|
14. Push a new tag to [`manual`](https://github.com/denoland/manual). The tag
|
|
|
|
must match the tag from point 9; you don't need to create dedicated commit
|
|
|
|
for that purpose, it's enough to tag the latest commit in that repo.
|
|
|
|
|
2021-06-22 10:39:44 -04:00
|
|
|
## Updating `deno_docker`
|
|
|
|
|
|
|
|
1. Open a PR on the `deno_docker` repo that bumps the Deno version in all
|
|
|
|
Dockerfiles, the README and the example Dockerfile
|
|
|
|
2. Create a tag with the version number (_without_ `v` prefix).
|