summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-08-22 14:47:25 -0400
committerBert Belder <bertbelder@gmail.com>2019-08-22 15:11:22 -0700
commit0809b06a3938868f364f1343b0de4d5d9686495d (patch)
treea0823b19eccb54e85455ee1c07b797dea2445b0e
parent7f9c6decc8982dc9dec762d6f2cc77c6bdd3f817 (diff)
v0.16.0
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md28
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
4 files changed, 32 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index bbcccefec..f785728b2 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -209,7 +209,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.15.0"
+version = "0.16.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)",
@@ -222,12 +222,12 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.15.0"
+version = "0.16.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.15.0",
+ "deno 0.16.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"flatbuffers 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Releases.md b/Releases.md
index 162359ab8..87c52e29e 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,31 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.16.0 / 2019.08.22
+
+In deno:
+
+- feat: "deno test" subcommand (#2783, #2784, #2800)
+- feat: implement console.trace() (#2780)
+- feat: support .d.ts files (#2746)
+- feat: support custom inspection of objects (#2791)
+- fix: dynamic import panic (#2792)
+- fix: handle tsconfig.json with comments (#2773)
+- fix: import map panics, use import map's location as its base URL (#2770)
+- fix: set response.url (#2782)
+
+In deno_std:
+
+- feat: add overloaded form of unit test declaration (denoland/deno_std#563)
+- feat: add printf implementation (fmt/sprintf.ts) (denoland/deno_std#566)
+- feat: print out the failed tests after the summary (denoland/deno_std#554)
+- feat: test runner (denoland/deno_std#516, denoland/deno_std#564,
+ denoland/deno_std#568)
+- fix: accept absolute root directories in the file server
+ (denoland/deno_std#558)
+- fix: refactor 'assertEquals' (denoland/deno_std#560)
+- fix: test all text functions in colors module (denoland/deno_std#553)
+
### v0.15.0 / 2019.08.13
In deno:
@@ -58,7 +83,8 @@ In deno:
In deno_std:
- fix: Make shebangs Linux compatible (denoland/deno_std#545)
-- fix: Ignore error of writing responses to aborted requests (denoland/deno_std#546)
+- fix: Ignore error of writing responses to aborted requests
+ (denoland/deno_std#546)
- fix: use Deno.execPath where possible (denoland/deno_std#548)
### v0.12.0 / 2019.07.16
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 45f4c5301..541a74f32 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -12,7 +12,7 @@ path = "main.rs"
[package]
name = "deno_cli"
-version = "0.15.0"
+version = "0.16.0"
edition = "2018"
[dependencies]
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 39c889639..e10318264 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.15.0"
+version = "0.16.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]