summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-09-24 18:45:31 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-09-25 10:58:35 -0400
commit3892cf59018acd71dd4bc1099d747bd683cd4118 (patch)
tree3cb09dadd2745efa4bc9b4a9f82f93fc2f5b6fa1
parent3d2d0ee771abe308aee9a0ab6c89fd09bac80330 (diff)
v0.19.0
-rw-r--r--Cargo.lock20
-rw-r--r--Releases.md26
-rw-r--r--cli/Cargo.toml8
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
-rw-r--r--js/Cargo.toml8
6 files changed, 47 insertions, 21 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 83fd39b7e..b53197223 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -253,7 +253,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.18.0"
+version = "0.19.0"
dependencies = [
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -266,14 +266,14 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.18.4"
+version = "0.19.0"
dependencies = [
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "deno 0.18.0",
- "deno_cli_snapshots 0.18.3",
- "deno_typescript 0.18.3",
+ "deno 0.19.0",
+ "deno_cli_snapshots 0.19.0",
+ "deno_typescript 0.19.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -314,17 +314,17 @@ dependencies = [
[[package]]
name = "deno_cli_snapshots"
-version = "0.18.3"
+version = "0.19.0"
dependencies = [
- "deno 0.18.0",
- "deno_typescript 0.18.3",
+ "deno 0.19.0",
+ "deno_typescript 0.19.0",
]
[[package]]
name = "deno_typescript"
-version = "0.18.3"
+version = "0.19.0"
dependencies = [
- "deno 0.18.0",
+ "deno 0.19.0",
"serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Releases.md b/Releases.md
index d9023eb76..759f28884 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.19.0 / 2019.09.24
+
+In deno:
+
+- feat: Add Deno.dialTLS()
+- feat: Make deno_cli installable via crates.io (#2946)
+- feat: Remove test.py, use cargo test as test frontend (#2967)
+- feat: dial/listen API change (#3000)
+- feat: parallelize downloads from TS compiler (#2949)
+- fix: Make `window` compatible with ts 3.6 (#2984)
+- fix: Remove some non-standard web API constructors (#2970)
+- fix: debug logging in runtime/compiler (#2953)
+- fix: flag parsing of config file (#2996)
+- fix: reschedule global timer if it fires earlier than expected (#2989)
+- fix: type directive parsing (#2954)
+- upgrade: V8 to 7.9.110 for top-level-await (#3015)
+- upgrade: to TypeScript 3.6.3 (#2969)
+
+In deno_std:
+
+- feat: Implement BufReader.readString (denoland/deno_std#607)
+- fix: TOML's key encoding (denoland/deno_std#612)
+- fix: remove //testing/main.ts (denoland/deno_std#605)
+- fix: types in example_client for ws module (denoland/deno_std#609)
+- upgrade: mime-db to commit c50e0d1 (denoland/deno_std#608)
+
### v0.18.0 / 2019.09.13
In deno:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 463c9fbc1..4cb59f171 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cli"
-version = "0.18.4"
+version = "0.19.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -19,9 +19,9 @@ name = "deno"
path = "main.rs"
[dependencies]
-deno = { path = "../core", version = "0.18.0" }
-deno_cli_snapshots = { path = "../js", version = "0.18.3" }
-deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
+deno = { path = "../core", version = "0.19.0" }
+deno_cli_snapshots = { path = "../js", version = "0.19.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.19.0" }
ansi_term = "0.12.1"
atty = "0.2.13"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 5a62eecec..190c5945f 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.18.0"
+version = "0.19.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index ddda684b2..d91b326ca 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.18.3"
+version = "0.19.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/ry/deno_typescript"
@@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"
[dependencies]
-deno = { path = "../core", version = "0.18.0" }
+deno = { path = "../core", version = "0.19.0" }
serde_json = "1.0.40"
serde = { version = "1.0.100", features = ["derive"] }
diff --git a/js/Cargo.toml b/js/Cargo.toml
index 32fab5a60..f36ca7de7 100644
--- a/js/Cargo.toml
+++ b/js/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_cli_snapshots"
-version = "0.18.3"
+version = "0.19.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -15,11 +15,11 @@ exclude = [
path = "lib.rs"
[dependencies]
-deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
+deno_typescript = { path = "../deno_typescript", version = "0.19.0" }
[dev-dependencies]
-deno = { path = "../core", version = "0.18.0" }
+deno = { path = "../core", version = "0.19.0" }
[build-dependencies]
-deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
+deno_typescript = { path = "../deno_typescript", version = "0.19.0" }