From d60bdb6350f2583e35d020f6cebb6aa30262fbcc Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 8 Jun 2019 14:44:45 -0400 Subject: [PATCH] v0.8.0 --- Cargo.lock | 6 +++--- Releases.md | 26 ++++++++++++++++++++++++++ cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- 4 files changed, 31 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c5b365a2..4b51253d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -197,7 +197,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.7.0" +version = "0.8.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)", @@ -209,12 +209,12 @@ dependencies = [ [[package]] name = "deno_cli" -version = "0.7.0" +version = "0.8.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.7.0", + "deno 0.8.0", "dirs 2.0.0 (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 95851b3f..fd4341c4 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.8.0 / 2019.06.08 + +In deno: + +- feat: Add 'bundle' subcommand. (#2467) +- feat: Handle compiler diagnostics in Rust (#2445) +- feat: add deno fmt --stdout option (#2439) +- feat: CLI defaults to run subcommand (#2451) +- fix: Compiler exit before emit if preEmitDiagnostics found (#2441) +- fix: Deno.core.evalContext & Deno.core.print (#2465) +- fix: Improve setup.py for package managers (#2423) +- fix: Use body when Request instance is passed to fetch (#2435) +- perf: Create fewer threads (#2476) +- upgrade: TypeScript to 3.5.1 (#2437) +- upgrade: std/prettier@0.5.0 to std/prettier@0.7.0 (#2425) + +In deno_std: + +- ci: Check file changes during test (denoland/deno_std#476) +- ci: Implement strict mode (denoland/deno_std#453) +- ci: Make CI config DRY (denoland/deno_std#470) +- encoding/csv: add easy api (denoland/deno_std#458) +- io: make port BufReader.readByte() return + `number | EOF`(denoland/deno_std#472) +- ws: Add sec-websocket-version to handshake header (denoland/deno_std#468) + ### v0.7.0 / 2019.05.29 In deno: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 82b0a47e..d2481bb6 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -12,7 +12,7 @@ path = "main.rs" [package] name = "deno_cli" -version = "0.7.0" +version = "0.8.0" edition = "2018" [dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index 7e1c7ff4..30160632 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.7.0" +version = "0.8.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["The deno authors "] -- GitLab