diff --git a/Cargo.lock b/Cargo.lock index 8f5883c3e9219f..f96d6d28e8e4b5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -197,7 +197,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.3.10" +version = "0.3.11" dependencies = [ "futures 0.1.26 (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.3.10" +version = "0.3.11" 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.3.10", + "deno 0.3.11", "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", "flatbuffers 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Releases.md b/Releases.md index f2b84271055de5..48be15edbdbdf6 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,29 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.3.11 / 2019.05.03 + +In deno: + +- add "deno run" subcommand (#2215) +- add "deno xeval" subcommand (#2260) +- add --no-fetch CLI flag to prevent remote downloads (#2213) +- Fix: deno --v8-options does not print v8 options (#2277) +- Performance improvements and fix memory leaks (#2259, #2238) +- Add Request global constructor (#2253) +- fs: add Deno.utime/Deno.utimeSync (#2241) +- Make `atob` follow the spec (#2242) +- Upgrade V8 to 7.6.53 (#2236) +- Remove ? from URL when deleting all params (#2217) +- Add support for custom tsconfig.json (#2089) +- URLSearchParams init with itself (#2218) + +In deno_std: + +- textproto: fix invalid header error and move tests (#369) +- Add http/cookie improvements (#368, #359) +- fix ensureLink (#360) + ### v0.3.10 / 2019.04.25 In deno: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 8ad8735deaa1e1..4ce1db996aa771 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -12,7 +12,7 @@ path = "main.rs" [package] name = "deno_cli" -version = "0.3.10" +version = "0.3.11" edition = "2018" [dependencies] diff --git a/core/Cargo.toml b/core/Cargo.toml index 7b560fa4ed9273..58710aca043603 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.3.10" +version = "0.3.11" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["The deno authors "]