This commit is contained in:
Ryan Dahl 2019-08-22 14:47:25 -04:00 committed by Bert Belder
parent 7f9c6decc8
commit 0809b06a39
4 changed files with 32 additions and 6 deletions

6
Cargo.lock generated
View File

@ -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)",

View File

@ -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

View File

@ -12,7 +12,7 @@ path = "main.rs"
[package]
name = "deno_cli"
version = "0.15.0"
version = "0.16.0"
edition = "2018"
[dependencies]

View File

@ -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>"]