From 7446230e6b39a0d3ce70b8fffbed3ebc63e8c762 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 31 Jul 2020 15:14:25 -0400 Subject: [PATCH] v1.2.2 --- Cargo.lock | 4 ++-- Releases.md | 19 +++++++++++++++++++ cli/Cargo.toml | 6 +++--- core/Cargo.toml | 2 +- std/version.ts | 2 +- 5 files changed, 26 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c12748689fd28..beb1b72a0c31a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -373,7 +373,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.2.1" +version = "1.2.2" dependencies = [ "atty", "base64 0.12.3", @@ -429,7 +429,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.50.0" +version = "0.51.0" dependencies = [ "derive_deref", "downcast-rs", diff --git a/Releases.md b/Releases.md index 32a8f7eccadbb..2a3b2a4c38120 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,25 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.2.2 / 2020.07.31 + +Changes in the CLI: + +- fix: Change release build flags to optimize for size (#6907) +- fix: Fix file URL to path conversion on Windows (#6920) +- fix: deno-types, X-TypeScript-Types precedence (#6761) +- fix: downcast from SwcDiagnosticBuffer to OpError (#6909) +- perf: Use SWC to strip types for "--no-check" flag (#6895) +- upgrade: deno_lint, dprint, swc (#6928, #6869) +- feat(unstable): add "--ignore" flag to deno fmt (#6890) + +Changes in std version 0.63.0: + +- feat(std/async): add pooledMap utility (#6898) +- fix(std/json): Add newline at the end of json files (#6885) +- fix(std/path): Percent-decode in fromFileUrl() (#6913) +- fix(std/tar): directory type bug (#6905) + ### 1.2.1 / 2020.07.23 Changes in the CLI: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index f282e79f3adcc..0a9125355eeb6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.2.1" +version = "1.2.2" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -15,14 +15,14 @@ name = "deno" path = "main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.50.0" } +deno_core = { path = "../core", version = "0.51.0" } [target.'cfg(windows)'.build-dependencies] winres = "0.1" winapi = "0.3.8" [dependencies] -deno_core = { path = "../core", version = "0.50.0" } +deno_core = { path = "../core", version = "0.51.0" } deno_lint = "0.1.20" atty = "0.2.14" diff --git a/core/Cargo.toml b/core/Cargo.toml index d0af09ced7da9..4200f9c52b254 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.50.0" +version = "0.51.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/std/version.ts b/std/version.ts index b19283ee79108..7723816ab638c 100644 --- a/std/version.ts +++ b/std/version.ts @@ -4,4 +4,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.62.0"; +export const VERSION = "0.63.0";