summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-12-14 21:25:05 +0100
committerGitHub <noreply@github.com>2020-12-14 21:25:05 +0100
commitb6d5ae1ecd125ce8a14cddc877cb66dbcfc9bb04 (patch)
treeace0445a08e06bda6ae686b7b309c4c2d6706905
parent025c0a1d372845b753fe682edd9fd050e1de1884 (diff)
v1.6.1
-rw-r--r--Cargo.lock2
-rw-r--r--Releases.md17
-rw-r--r--cli/Cargo.toml2
-rw-r--r--std/version.ts2
4 files changed, 20 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c817b8351..58c278e56 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 da6720e2f..57e97625c 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 ba17a1e88..b6979c638 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 f9e88e58a..05603ffc5 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";