summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock20
-rw-r--r--Releases.md28
-rw-r--r--cli/Cargo.toml2
-rw-r--r--cli_snapshots/Cargo.toml4
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml2
6 files changed, 43 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c1bab2c7e..daaf89639 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -253,7 +253,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.16.0"
+version = "0.17.0"
dependencies = [
"futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -266,14 +266,14 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.16.0"
+version = "0.17.0"
dependencies = [
"ansi_term 0.12.0 (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.16.0",
- "deno_cli_snapshots 0.0.3",
- "deno_typescript 0.0.3",
+ "deno 0.17.0",
+ "deno_cli_snapshots 0.17.0",
+ "deno_typescript 0.17.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -312,17 +312,17 @@ dependencies = [
[[package]]
name = "deno_cli_snapshots"
-version = "0.0.3"
+version = "0.17.0"
dependencies = [
- "deno 0.16.0",
- "deno_typescript 0.0.3",
+ "deno 0.17.0",
+ "deno_typescript 0.17.0",
]
[[package]]
name = "deno_typescript"
-version = "0.0.3"
+version = "0.17.0"
dependencies = [
- "deno 0.16.0",
+ "deno 0.17.0",
"serde 1.0.99 (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 f14b207b9..ad0ce2e2a 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,34 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.17.0 / 2019.09.04
+
+In deno:
+
+- feat: Add window.queueMicrotask (#2844)
+- feat: Support HTTP proxies in fetch (#2822)
+- feat: Support `_` and `_error` in REPL (#2845, #2843)
+- feat: add statusText for fetch (#2851)
+- feat: implement Addr interface (#2821)
+- fix: Improve error stacks for async ops (#2820)
+- fix: add console.dirxml (#2835)
+- fix: do not export `isConsoleInstance` (#2850)
+- fix: set/clearTimeout's params should not be bigint (#2834, #2838)
+- fix: shared queue requires aligned buffer (#2816)
+- refactor: Remove Node build dependency and change how internal V8 snapshots
+ are built (#2825, #2827, #2826, #2826)
+- refactor: Remove flatbuffers (#2818, #2819, #2817, #2812, #2815, #2799)
+- regression: Introduce regression in fetch's Request/Response stream API to
+ support larger refactor (#2826)
+
+In deno_std:
+
+- fix: better paths handling in test runner (denoland/deno_std#574)
+- fix: avoid prototype builtin `hasOwnProperty` (denoland/deno_std#577)
+- fix: boolean regexp (denoland/deno_std#582)
+- fix: printf should use padEnd and padStart (denoland/deno_std#583)
+- fix: ws should use crypto getRandomValues (denoland/deno_std#584)
+
### v0.16.0 / 2019.08.22
In deno:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 02d241003..119f6b16b 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -12,7 +12,7 @@ path = "main.rs"
[package]
name = "deno_cli"
-version = "0.16.0"
+version = "0.17.0"
edition = "2018"
[dependencies]
diff --git a/cli_snapshots/Cargo.toml b/cli_snapshots/Cargo.toml
index e6cbf6a25..928ad0c7f 100644
--- a/cli_snapshots/Cargo.toml
+++ b/cli_snapshots/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_cli_snapshots"
-version = "0.0.3"
+version = "0.17.0"
license = "MIT"
authors = ["Ryan Dahl <ry@tinyclouds.org>"]
edition = "2018"
@@ -14,5 +14,5 @@ path = "lib.rs"
deno = { path = "../core" }
[build-dependencies]
-deno_typescript = { path = "../deno_typescript", version = "0.0.3" }
+deno_typescript = { path = "../deno_typescript" }
diff --git a/core/Cargo.toml b/core/Cargo.toml
index fd6f5548f..ea043b350 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.16.0"
+version = "0.17.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index 514e0098a..77d16fbcd 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.0.3"
+version = "0.17.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/ry/deno_typescript"