diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-12-22 17:00:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 17:00:35 +0100 |
commit | d199e45ad5dd180a6969abcd528023e173a1e1ff (patch) | |
tree | f3b18c05c88856e7a2811685603cbd8e435a3df0 | |
parent | 6ce310fa2729ec8ab81a5db6410d024b3f2585c1 (diff) |
v1.6.2
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Releases.md | 21 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 | ||||
-rw-r--r-- | std/version.ts | 2 |
4 files changed, 24 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index ed4c95b2e..1ffadabe9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -452,7 +452,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.6.1" +version = "1.6.2" dependencies = [ "atty", "base64 0.12.3", diff --git a/Releases.md b/Releases.md index 7127d0371..166c5162d 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,27 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.6.2 / 2020.12.22 + +- feat(lsp): support the unstable setting (#8851) +- feat(unstable): record raw coverage into a directory (#8642) +- feat(unstable): support in memory certificate data for Deno.createHttpClient + (#8739) +- fix: atomically write files to $DENO_DIR (#8822) +- fix: implement ReadableStream fetch body handling (#8855) +- fix: make DNS resolution async (#8743) +- fix: make dynamic import errors catchable (#8750) +- fix: respect enable flag for requests in lsp (#8850) +- refactor: rename runtime/rt to runtime/js (#8806) +- refactor: rewrite lsp to be async (#8727) +- refactor: rewrite ops to use ResourceTable2 (#8512) +- refactor: optimise static assets in lsp (#8771) +- upgrade TypeScript to 4.1.3 (#8785) + +Changes in std version 0.82.0: + +- feat(std/node): Added os.type (#8591) + ### 1.6.1 / 2020.12.14 - feat(lsp): support import maps (#8683) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index a8decf678..0e56c6126 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.6.1" +version = "1.6.2" license = "MIT" authors = ["the Deno authors"] edition = "2018" diff --git a/std/version.ts b/std/version.ts index 05603ffc5..c2e1243e5 100644 --- a/std/version.ts +++ b/std/version.ts @@ -5,4 +5,4 @@ * the cli's API is stable. In the future when std becomes stable, likely we * will match versions with cli as we have in the past. */ -export const VERSION = "0.81.0"; +export const VERSION = "0.82.0"; |