From ac705b793612db6cc11b13270907e216e07460b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 29 Aug 2020 15:53:13 +0200 Subject: [PATCH] v1.3.2 --- Cargo.lock | 6 +++--- Releases.md | 31 +++++++++++++++++++++++++++++++ cli/Cargo.toml | 8 ++++---- core/Cargo.toml | 2 +- op_crates/web/Cargo.toml | 4 ++-- std/version.ts | 2 +- 6 files changed, 42 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7a8d2732c7..306d3a5e71 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -332,7 +332,7 @@ dependencies = [ [[package]] name = "deno" -version = "1.3.1" +version = "1.3.2" dependencies = [ "atty", "base64 0.12.3", @@ -391,7 +391,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.54.0" +version = "0.55.0" dependencies = [ "downcast-rs", "futures", @@ -440,7 +440,7 @@ dependencies = [ [[package]] name = "deno_web" -version = "0.4.0" +version = "0.5.0" dependencies = [ "deno_core", "futures", diff --git a/Releases.md b/Releases.md index 8af49252fe..bc95c1af33 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### 1.3.2 / 2020.08.29 + +- fix(cli): revert "never type check deno info #6978" (#7199) +- fix(console): handle escape sequences when logging objects (#7171) +- fix(doc): stack overflow for .d.ts files (#7167) +- fix(install): Strip "@..." suffixes from inferred names (#7223) +- fix(lint): use recommended rules set (#7222) +- fix(url): Add missing part assignment (#7239) +- fix(url): Don't encode "'" in non-special query strings (#7152) +- fix(web): throw TypeError on invalid input types in TextDecoder.decode() + (#7179) +- build: Move benchmarks to Rust (#7134) +- upgrade: swc, dprint, deno_lint, deno_doc (#7162, #7194) +- upgrade: rusty_v8 0.9.1 / V8 8.6.334 (#7243) +- upgrade: TypeScript 4.0 (#6514) + +Changes in std version 0.67.0: + +- BREAKING(std/wasi): rename Module to Context (#7110) +- BREAKING(std/wasi): use record for exports (#7109) +- feat(std/fmt): add bright color variations (#7241) +- feat(std/node): add URL export (#7132) +- feat(std/testing): add assertNotMatch (#6775) +- fix(std/encoding/toml): Comment after arrays causing incorrect output (#7224) +- fix(std/node): "events" and "util" modules (#7170) +- fix(std/testing): invalid dates assertion equality (#7230) +- fix(std/wasi): always capture syscall exceptions (#7116) +- fix(std/wasi): ignore lint errors (#7197) +- fix(std/wasi): invalid number to bigint conversion in fd_tell (#7215) +- fix(std/wasi): return flags from fd_fdstat_get (#7112) + ### 1.3.1 / 2020.08.21 - fix: Allow isolated "%"s when parsing file URLs (#7108) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 751a7c461c..ea9e575b8b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "1.3.1" +version = "1.3.2" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -20,15 +20,15 @@ harness = false path = "./bench/main.rs" [build-dependencies] -deno_core = { path = "../core", version = "0.54.0" } -deno_web = { path = "../op_crates/web", version = "0.4.0" } +deno_core = { path = "../core", version = "0.55.0" } +deno_web = { path = "../op_crates/web", version = "0.5.0" } [target.'cfg(windows)'.build-dependencies] winres = "0.1.11" winapi = "0.3.9" [dependencies] -deno_core = { path = "../core", version = "0.54.0" } +deno_core = { path = "../core", version = "0.55.0" } deno_doc = { version = "0.1.2" } deno_lint = { version = "0.1.25", features = ["json"] } diff --git a/core/Cargo.toml b/core/Cargo.toml index 8b918d0142..bd60736ab4 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,7 +1,7 @@ # Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" -version = "0.54.0" +version = "0.55.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["the Deno authors"] diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml index 7d5ca6c2e6..0b3d65f12f 100644 --- a/op_crates/web/Cargo.toml +++ b/op_crates/web/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_web" -version = "0.4.0" +version = "0.5.0" edition = "2018" description = "Collection of Web APIs" authors = ["the Deno authors"] @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno" path = "lib.rs" [dependencies] -deno_core = { version = "0.54.0", path = "../../core" } +deno_core = { version = "0.55.0", path = "../../core" } [dev-dependencies] futures = "0.3.5" diff --git a/std/version.ts b/std/version.ts index 6efc0fe516..12936341ab 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.66.0"; +export const VERSION = "0.67.0";