1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-25 16:49:18 -05:00
This commit is contained in:
Ryan Dahl 2019-05-03 14:30:05 -04:00
parent f6a9d7d717
commit 3b1e2f1ad4
4 changed files with 28 additions and 5 deletions

6
Cargo.lock generated
View file

@ -197,7 +197,7 @@ dependencies = [
[[package]] [[package]]
name = "deno" name = "deno"
version = "0.3.10" version = "0.3.11"
dependencies = [ dependencies = [
"futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -209,12 +209,12 @@ dependencies = [
[[package]] [[package]]
name = "deno_cli" name = "deno_cli"
version = "0.3.10" version = "0.3.11"
dependencies = [ dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", "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)", "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)", "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)", "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)", "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)", "futures 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -6,6 +6,29 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at We also have one-line install commands at
https://github.com/denoland/deno_install 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 ### v0.3.10 / 2019.04.25
In deno: In deno:

View file

@ -12,7 +12,7 @@ path = "main.rs"
[package] [package]
name = "deno_cli" name = "deno_cli"
version = "0.3.10" version = "0.3.11"
edition = "2018" edition = "2018"
[dependencies] [dependencies]

View file

@ -2,7 +2,7 @@
[package] [package]
name = "deno" name = "deno"
version = "0.3.10" version = "0.3.11"
edition = "2018" edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"] authors = ["The deno authors <bertbelder@nodejs.org>"]