From b6d5ae1ecd125ce8a14cddc877cb66dbcfc9bb04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 14 Dec 2020 21:25:05 +0100 Subject: [PATCH] v1.6.1 --- Cargo.lock | 2 +- Releases.md | 17 +++++++++++++++++ cli/Cargo.toml | 2 +- std/version.ts | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c817b83516949..58c278e56dac3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -450,7 +450,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.6.0" +version = "1.6.1" dependencies = [ "atty", "base64 0.12.3", diff --git a/Releases.md b/Releases.md index da6720e2f9ac4..57e97625c40f3 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,23 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.6.1 / 2020.12.14 + +- feat(lsp): support import maps (#8683) +- fix: show canary string in long version (#8675) +- fix: zsh completions (#8718) +- fix(compile): error when the output path already exists (#8681) +- fix(lsp): only resolve sources with supported schemas (#8696) +- fix(op_crates/fetch): support non-ascii response headers value (#8600) +- fix(repl): recover from invalid input (#8759) +- refactor: deno_runtime crate (#8640) +- upgrade: swc_ecmascript to 0.15.0 (#8688) + +Changes in std version 0.80.0: + +- fix(std/datetime): partsToDate (#8553) +- fix(std/wasi): disallow multiple starts (#8712) + ### 1.6.0 / 2020.12.08 - BREAKING: Make "isolatedModules" setting non-configurable (#8482) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index ba17a1e88db57..b6979c638d9f2 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.6.0" +version = "1.6.1" license = "MIT" authors = ["the Deno authors"] edition = "2018" diff --git a/std/version.ts b/std/version.ts index f9e88e58a0475..05603ffc5b0cb 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.80.0"; +export const VERSION = "0.81.0";