From b1d63aefd9f150ed3acbc3d0a6c2f51dadad3d17 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Wed, 13 Oct 2021 03:48:18 -0400 Subject: [PATCH] 1.15.1 --- Cargo.lock | 2 +- Releases.md | 5 +++++ cli/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 45be434650..4c1f386a77 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -624,7 +624,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.15.0" +version = "1.15.1" dependencies = [ "atty", "base64 0.13.0", diff --git a/Releases.md b/Releases.md index c15ee81532..93d4519630 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,11 @@ https://github.com/denoland/deno/releases We also have one-line install commands at: https://github.com/denoland/deno_install +### 1.15.1 / 2021.10.13 + +- fix: `--no-check` not properly handling code nested in TS expressions (#12416) +- fix: bundler panic when encountering export specifier with an alias (#12418) + ### 1.15.0 / 2021.10.12 - feat: add --compat flag to provide built-in Node modules (#12293) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 09cc1a8803..0d6c31e3cc 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.15.0" +version = "1.15.1" authors = ["the Deno authors"] default-run = "deno" edition = "2018"