diff --git a/Cargo.lock b/Cargo.lock index bbcccefeca..f785728b2a 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 162359ab8d..87c52e29e9 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 45f4c53019..541a74f32d 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 39c8896394..e103182645 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 "]