diff --git a/Cargo.lock b/Cargo.lock index 86b1309e4b..22a61aee43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -197,7 +197,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.10.0" +version = "0.11.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.10.0" +version = "0.11.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.10.0", + "deno 0.11.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 786d39940b..5c0f331b14 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.11.0 / 2019.07.06 + +In deno: + +- feat: Add Deno.homeDir() (#2578) +- feat: Change Reader interface (#2591) +- feat: add bash completions (#2577) +- feat: parse CLI flags after script name (#2596) +- fix: multiple error messages for a missing file (#2587) +- fix: normalize Deno.execPath (#2598) +- fix: return useful error when import path has no ./ (#2605) +- fix: run blocking function on a different task (#2570) + +In deno_std: + +- feat: add UUID module (denoland/deno_std#479) +- feat: prettier support reading code from stdin (denoland/deno_std#498) + ### v0.10.0 / 2019.06.25 In deno: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 32f1588b0d..dfcafc2158 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -12,7 +12,7 @@ path = "main.rs" [package] name = "deno_cli" -version = "0.10.0" +version = "0.11.0" edition = "2018" [dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index f4ab8c1e96..b22bf7fe94 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.10.0" +version = "0.11.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["The deno authors "]