summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-06-08 21:38:36 +0200
committerGitHub <noreply@github.com>2021-06-08 21:38:36 +0200
commitb98293e21cb7e55def8fea2ca015381150d4cebf (patch)
tree6591af5ea6d26d28eaf567e94abc8600f822019c
parent3a96fe55a0d71b75975823c5535115683bb04880 (diff)
v1.11.0
-rw-r--r--Cargo.lock2
-rw-r--r--Releases.md27
-rw-r--r--cli/Cargo.toml2
-rw-r--r--tools/cut_a_release.md1
4 files changed, 30 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1b0b4044b..bb2144df2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -521,7 +521,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.10.3"
+version = "1.11.0"
dependencies = [
"atty",
"base64 0.13.0",
diff --git a/Releases.md b/Releases.md
index 9103d0b93..a3b380e2b 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,33 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
+### 1.11.0 / 2021.06.08
+
+- feat: Add FsWatcher interface (#10798)
+- feat: Add origin data dir to deno info (#10589)
+- feat: Initialize runtime_compiler ops in `deno compile` (#10052)
+- feat: Make 'deno lint' stable (#10851)
+- feat: Support data uri dynamic imports in `deno compile` (#9936)
+- feat: upgrade to TypeScript 4.3 (#9960)
+- feat(extensions): add BroadcastChannel
+- feat(extensions/crypto): implement randomUUID (#10848)
+- feat(extensions/crypto): implement subtle.digest (#10796)
+- feat(extensions/fetch): implement abort (#10863)
+- feat(extensions/web): Implement TextDecoderStream and TextEncoderStream
+ (#10842)
+- feat(lsp): add test code lens (#10874)
+- feat(lsp): registry auto discovery (#10813)
+- fix: change Crypto to interface (#10853)
+- fix: Support the stream option to TextDecoder#decode (#10805)
+- fix(extensions/fetch): implement newline normalization and escapes in the
+ multipart/form-data serializer (#10832)
+- fix(runtime/http): Hang in `Deno.serveHttp` (#10836)
+- fix(streams): expose ReadableByteStreamController &
+ TransformStreamDefaultController (#10855)
+
+Release notes for std version 0.98.0:
+https://github.com/denoland/deno_std/releases/tag/0.98.0
+
### 1.10.3 / 2021.05.31
- feat(lsp): diagnostics for deno types and triple-slash refs (#10699)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 3c64798a6..305b19c9b 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.10.3"
+version = "1.11.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
diff --git a/tools/cut_a_release.md b/tools/cut_a_release.md
index 499316512..246dde28f 100644
--- a/tools/cut_a_release.md
+++ b/tools/cut_a_release.md
@@ -35,6 +35,7 @@ between the crates, it must be done in specific order:
changes
- `deno_core` - all crates depend on `deno_core` so it must always be published
first
+- `bench_util`
- crates in `extensions/` directory
- `deno_crypto` and `deno_webstorage` depend on `deno_web`, so the latter must
be bumped and released first