This commit is contained in:
Bartek Iwańczuk 2021-06-21 17:47:25 +02:00 committed by GitHub
parent 90e3abe8f9
commit 2c0e482221
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 2 deletions

2
Cargo.lock generated
View File

@ -521,7 +521,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.11.1"
version = "1.11.2"
dependencies = [
"atty",
"base64 0.13.0",

View File

@ -6,6 +6,18 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
### 1.11.2 / 2021.06.21
- feat(unstable, lsp): quick fix actions to ignore lint errors (#10627)
- fix: add support for module es2020 to Deno.emit (#11065)
- fix: align Console to spec (#10983)
- fix: align URL / URLSearchParams to spec (#11005)
- fix: align Websocket to spec (#11010)
- fix: closing / aborting WritableStream is racy (#10982)
- fix: fetch with method HEAD should not have body (#11003)
- fix: Worker accepts specifier as URL (#11038)
- fix(lsp): do not rename in strings and comments (#11041)
### 1.11.1 / 2021.06.15
- feat(unstable): add additional logging information in LSP (#10890)

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.11.1"
version = "1.11.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"

View File

@ -36,6 +36,8 @@ between the crates, it must be done in specific order:
- crates in `extensions/` directory
- `deno_fetch`, `deno_crypto` and `deno_webstorage` depend on `deno_web`, so
the latter must be bumped and released first
- `deno_url` depends on `deno_webidl`, so the latter must be bumped and
released first
- `runtime` - this crate depends on `deno_core` and all crates in `extensions/`
directory