2020-11-30 08:06:30 -05:00
|
|
|
## Release Schedule
|
|
|
|
|
2021-03-05 07:49:13 -05:00
|
|
|
A new minor release for the `deno` cli is released every 6 weeks. After 1.9.0 we
|
|
|
|
will be switching to a 4 week release cycle. A new patch version is released
|
|
|
|
weekly, as necessary.
|
2020-11-30 08:06:30 -05:00
|
|
|
|
|
|
|
The release dates for the upcoming minor releases are:
|
|
|
|
|
2020-12-29 20:20:39 -05:00
|
|
|
- 1.9.0: April 13, 2021
|
2021-03-05 07:49:13 -05:00
|
|
|
- 1.10.0: May 11, 2021
|
|
|
|
- 1.11.0: June 8, 2021
|
2020-11-30 08:06:30 -05:00
|
|
|
|
|
|
|
Stable releases can be found on the
|
|
|
|
[GitHub releases page](https://github.com/denoland/deno/releases).
|
|
|
|
|
|
|
|
### Canary channel
|
|
|
|
|
|
|
|
In addition to the stable channel described above, canaries are released
|
2021-02-19 09:58:19 -05:00
|
|
|
multiple times daily (for each commit on main). You can upgrade to the latest
|
2020-11-30 08:06:30 -05:00
|
|
|
canary release by running:
|
|
|
|
|
|
|
|
```
|
|
|
|
deno upgrade --canary
|
|
|
|
```
|
|
|
|
|
2020-12-29 20:20:39 -05:00
|
|
|
To update to a specific canary, pass the commit hash in the `--version` option:
|
2020-11-30 08:06:30 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
deno upgrade --canary --version=973af61d8bb03c1709f61e456581d58386ed4952
|
|
|
|
```
|
|
|
|
|
|
|
|
To switch back to the stable channel, run `deno upgrade`.
|
|
|
|
|
|
|
|
Canaries can be downloaded from https://dl.deno.land.
|