summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock8
-rw-r--r--Releases.md6
-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, 23 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 196cb4e7f..10a7b6f81 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -393,7 +393,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "1.4.3"
+version = "1.4.4"
dependencies = [
"atty",
"base64 0.12.3",
@@ -450,7 +450,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.60.0"
+version = "0.61.0"
dependencies = [
"anyhow",
"futures",
@@ -484,7 +484,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
-version = "0.4.0"
+version = "0.5.0"
dependencies = [
"deno_core",
"reqwest",
@@ -509,7 +509,7 @@ dependencies = [
[[package]]
name = "deno_web"
-version = "0.12.0"
+version = "0.13.0"
dependencies = [
"deno_core",
"futures",
diff --git a/Releases.md b/Releases.md
index 8b7dfd859..534b288cd 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,12 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### 1.4.4 / 2020.10.03
+
+- fix(cli): Update type definitions to align to TS dom (#7791)
+- fix(cli/repl): Fix hot loop in REPL (#7804)
+- fix(cli/repl): Enable colors on inspected values (#7798)
+
### 1.4.3 / 2020.10.02
- feat(unstable): Add module specifier to deno info --json output (#7725)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 2bed17fbf..603954fdf 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "1.4.3"
+version = "1.4.4"
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.60.0" }
-deno_web = { path = "../op_crates/web", version = "0.12.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.4.0" }
+deno_core = { path = "../core", version = "0.61.0" }
+deno_web = { path = "../op_crates/web", version = "0.13.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.5.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
-deno_core = { path = "../core", version = "0.60.0" }
+deno_core = { path = "../core", version = "0.61.0" }
deno_doc = "0.1.10"
deno_lint = { version = "0.2.2", features = ["json"] }
-deno_web = { path = "../op_crates/web", version = "0.12.0" }
-deno_fetch = { path = "../op_crates/fetch", version = "0.4.0" }
+deno_web = { path = "../op_crates/web", version = "0.13.0" }
+deno_fetch = { path = "../op_crates/fetch", version = "0.5.0" }
atty = "0.2.14"
base64 = "0.12.3"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index d52653949..5174de208 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.60.0"
+version = "0.61.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 6c050d099..925d53dae 100644
--- a/op_crates/fetch/Cargo.toml
+++ b/op_crates/fetch/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
-version = "0.4.0"
+version = "0.5.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.60.0", path = "../../core" }
+deno_core = { version = "0.61.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 5240cf43f..84a04fc12 100644
--- a/op_crates/web/Cargo.toml
+++ b/op_crates/web/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_web"
-version = "0.12.0"
+version = "0.13.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.60.0", path = "../../core" }
+deno_core = { version = "0.61.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 2193d4350..2e0ba739b 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.72.0";
+export const VERSION = "0.73.0";