diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Releases.md | 5 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 45be43465..4c1f386a7 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 c15ee8153..93d451963 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 09cc1a880..0d6c31e3c 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" |