summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock8
-rw-r--r--Releases.md34
-rw-r--r--cli/Cargo.toml14
-rw-r--r--core/Cargo.toml2
-rw-r--r--op_crates/fetch/Cargo.toml4
-rw-r--r--op_crates/web/Cargo.toml4
-rw-r--r--std/version.ts2
7 files changed, 51 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bc83710b5..8e1b2452d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -393,7 +393,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.4.1"
+version = "1.4.2"
dependencies = [
"atty",
"base64 0.12.3",
@@ -449,7 +449,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.58.0"
+version = "0.59.0"
dependencies = [
"anyhow",
"futures",
@@ -483,7 +483,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"deno_core",
"reqwest",
@@ -508,7 +508,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.9.0"
+version = "0.10.0"
dependencies = [
"deno_core",
"futures",
diff --git a/Releases.md b/Releases.md
index 90987cb90..bc07daf26 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,40 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.4.2 / 2020.09.25
+
+- fix: Better formatting in console (#7642, #7641, #7553)
+- fix: Change log level to which prefix added (#7582)
+- fix: Change the Console class declaration to an interface (#7646)
+- fix: Clearing timers race condition (#7617)
+- fix: customInspect works on functions (#7670)
+- fix: Ignore fileExists in tsc host (#7635)
+- fix: Make --unstable a global flag (#7585)
+- fix: Make --watch and --inspect conflicting args (#7610)
+- fix: Make some web API constructors illegal at runtime (#7468)
+- fix: Replaced legacy chrome-devtools:// scheme. (#7659)
+- fix: Response.arrayBuffer() doesn't return promise (#7618)
+- fix: Update supported text encodings (#7668)
+- fix: Use class instead of var+interface in d.ts #7514
+- fix(coverage): print lines with no coverage to stdout (#7640)
+- fix(fmt,lint): do not print number of checked files when `--quiet` is enabled
+ (#7579)
+- fix(info): add --importmap flag (#7424)
+- fix(installer): Don't reload by default (#7596)
+- fix(repl): interpret object literals as expressions (#7591)
+- fix(watch): watch importmap file for changes (#7580)
+- refactor(core): support error stack, remove js_check (#7629, #7636)
+- refactor(coverage): Harden coverage collection (#7584, #7616, #7577)
+- upgrade: TypeScript to 4.0.3 (#7637)
+- example(core): Add hello world example (#7611)
+
+Changes in std version 0.71.0:
+
+- feat(std/node): implement getSystemErrorName() (#7624)
+- fix(std/datetime): 12 and 24 support (#7661)
+- fix(std/fs): mark createWalkEntry(Sync) as internal (#7643)
+- chore(std/hash): update crates (#7631)
+
### 1.4.1 / 2020.09.18
- fix(cli/console): escape special characters in strings and property names
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 1307b445f..86ac0b28f 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.4.1"
+version = "1.4.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -20,20 +20,20 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
-deno_core = { path = "../core", version = "0.58.0" }
-deno_web = { path = "../op_crates/web", version = "0.9.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" }
+deno_core = { path = "../core", version = "0.59.0" }
+deno_web = { path = "../op_crates/web", version = "0.10.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.2.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
-deno_core = { path = "../core", version = "0.58.0" }
+deno_core = { path = "../core", version = "0.59.0" }
deno_doc = "0.1.9"
deno_lint = { version = "0.2.0", features = ["json"] }
-deno_web = { path = "../op_crates/web", version = "0.9.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.1.0" }
+deno_web = { path = "../op_crates/web", version = "0.10.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.2.0" }
atty = "0.2.14"
base64 = "0.12.3"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index b17ac88cb..e699dbe2d 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.58.0"
+version = "0.59.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/op_crates/fetch/Cargo.toml b/op_crates/fetch/Cargo.toml
index 33ffc513c..feece79d5 100644
--- a/op_crates/fetch/Cargo.toml
+++ b/op_crates/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.1.0"
+version = "0.2.0"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
@@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
-deno_core = { version = "0.58.0", path = "../../core" }
+deno_core = { version = "0.59.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }
diff --git a/op_crates/web/Cargo.toml b/op_crates/web/Cargo.toml
index df8e3786d..31cec21e6 100644
--- a/op_crates/web/Cargo.toml
+++ b/op_crates/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.9.0"
+version = "0.10.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.58.0", path = "../../core" }
+deno_core = { version = "0.59.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }
diff --git a/std/version.ts b/std/version.ts
index 4343a1327..c390df80a 100644
--- a/std/version.ts
+++ b/std/version.ts
@@ -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.70.0";
+export const VERSION = "0.71.0";