This commit is contained in:
Bartek Iwańczuk 2020-12-14 21:25:05 +01:00 committed by GitHub
parent 025c0a1d37
commit b6d5ae1ecd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 20 additions and 3 deletions

2
Cargo.lock generated
View File

@ -450,7 +450,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.6.0"
version = "1.6.1"
dependencies = [
"atty",
"base64 0.12.3",

View File

@ -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)

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.6.0"
version = "1.6.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"

View File

@ -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";