From c56df45355c8e68eabbfa62021e7ca7484115c0b Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 25 Jun 2019 09:31:51 -0400 Subject: [PATCH] v0.10.0 --- Cargo.lock | 6 +++--- Releases.md | 29 +++++++++++++++++++++++++++++ cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- 4 files changed, 34 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa227869d8..86b1309e4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -197,7 +197,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.9.0" +version = "0.10.0" dependencies = [ "futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -210,12 +210,12 @@ dependencies = [ [[package]] name = "deno_cli" -version = "0.9.0" +version = "0.10.0" dependencies = [ "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "deno 0.9.0", + "deno 0.10.0", "dirs 2.0.1 (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.27 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Releases.md b/Releases.md index d0bc257d1c..786d39940b 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,35 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.10.0 / 2019.06.25 + +In deno: + +- feat: improve module download progress (#2576) +- feat: improve 'deno install' (#2551) +- feat: log permission access with -L=info (#2518) +- feat: redirect process stdio to file (#2554) +- fix: add encodeInto to TextEncoder (#2558) +- fix: clearTimeout should convert to number (#2539) +- fix: clearTimeout.name / clearInterval.name (#2540) +- fix: event `isTrusted` is enumerable (#2543) +- fix: fetch() body now async iterable (#2563) +- fix: fetch() now handles redirects (#2561) +- fix: prevent multiple downloads of modules (#2477) +- fix: silent failure of WebAssembly.instantiate() (#2548) +- fix: urlSearchParams custom symbol iterator (#2537) + +In deno_std + +- feat(testing): Pretty output + Silent mode (denoland/deno_std#314) +- feat: Add os/userHomeDir (denoland/deno_std#521) +- feat: add catjson example (denoland/deno_std#517) +- feat: add encoding/hex module (denoland/deno_std#434) +- feat: improve installer (denoland/deno_std#512, denoland/deno_std#510, + denoland/deno_std#499) +- fix: bundle/run handles Deno.args better. (denoland/deno_std#514) +- fix: file server should order filenames (denoland/deno_std#511) + ### v0.9.0 / 2019.06.15 In deno: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9a6d18c1a0..32f1588b0d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -12,7 +12,7 @@ path = "main.rs" [package] name = "deno_cli" -version = "0.9.0" +version = "0.10.0" edition = "2018" [dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index 953f41a314..f4ab8c1e96 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.9.0" +version = "0.10.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["The deno authors "]