summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Releases.md12
-rw-r--r--cli/Cargo.toml2
-rw-r--r--tools/cut_a_release.md2
4 files changed, 16 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 8d2b412e8..3c924936b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -521,7 +521,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.11.1"
+version = "1.11.2"
dependencies = [
"atty",
"base64 0.13.0",
diff --git a/Releases.md b/Releases.md
index f27f3d6b6..2e71d677e 100644
--- a/Releases.md
+++ b/Releases.md
@@ -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)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 96130f825..b25b050c4 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.11.1"
+version = "1.11.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
diff --git a/tools/cut_a_release.md b/tools/cut_a_release.md
index cff04b8f3..047e90de1 100644
--- a/tools/cut_a_release.md
+++ b/tools/cut_a_release.md
@@ -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