diff --git a/Cargo.lock b/Cargo.lock index a4d193615ba87..05632eba37613 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -253,7 +253,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.17.0" +version = "0.18.0" dependencies = [ "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -266,14 +266,14 @@ dependencies = [ [[package]] name = "deno_cli" -version = "0.17.0" +version = "0.18.0" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", - "deno 0.17.0", - "deno_cli_snapshots 0.17.0", - "deno_typescript 0.17.0", + "deno 0.18.0", + "deno_cli_snapshots 0.18.0", + "deno_typescript 0.18.0", "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)", "fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -312,17 +312,17 @@ dependencies = [ [[package]] name = "deno_cli_snapshots" -version = "0.17.0" +version = "0.18.0" dependencies = [ - "deno 0.17.0", - "deno_typescript 0.17.0", + "deno 0.18.0", + "deno_typescript 0.18.0", ] [[package]] name = "deno_typescript" -version = "0.17.0" +version = "0.18.0" dependencies = [ - "deno 0.17.0", + "deno 0.18.0", "serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/Releases.md b/Releases.md index ad0ce2e2aa437..c3e95f0c888c3 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,39 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.18.0 / 2019.09.13 + +In deno: + +- build: remove tools/build.py; cargo build is the build frontend now (#2865, + #2874, #2876) +- feat: Make integration tests rust unit tests (#2884) +- feat: Set user agent for http client (#2916) +- feat: add bindings to run microtasks from Isolate (#2793) +- fix(fetch): implement bodyUsed (#2877) +- fix(url): basing in constructor (#2867, #2921) +- fix(xeval): incorrect chunk matching behavior (#2857) +- fix: Default 'this' to window in EventTarget (#2918) +- fix: Expose the DOM Body interface globally (#2903) +- fix: Keep all deno_std URLs in sync (#2930) +- fix: make 'deno fmt' faster (#2928) +- fix: panic during block_on (#2905) +- fix: panic during fetch (#2925) +- fix: path normalization in resolve_from_cwd() (#2875) +- fix: remove deprecated Deno.platform (#2895) +- fix: replace bad rid panics with errors (#2870) +- fix: type directives import (#2910) +- upgrade: V8 7.9.8 (#2907) +- upgrade: rust crates (#2937) + +In deno_std: + +- feat: Add xeval (denoland/deno_std#581) +- fix(flags): Parse builtin properties (denoland/deno_std#579) +- fix(uuid): Make it v4 rfc4122 compliant (denoland/deno_std#580) +- perf: Improve prettier speed by adding d.ts files (denoland/deno_std#591) +- upgrade: prettier to 1.18.2 (denoland/deno_std#592) + ### v0.17.0 / 2019.09.04 In deno: diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 62cd15799cfb7..971f2716acaa7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -5,7 +5,7 @@ path = "main.rs" [package] name = "deno_cli" -version = "0.17.0" +version = "0.18.0" edition = "2018" default-run = "deno" diff --git a/cli_snapshots/Cargo.toml b/cli_snapshots/Cargo.toml index 928ad0c7ff323..7762d53758654 100644 --- a/cli_snapshots/Cargo.toml +++ b/cli_snapshots/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_cli_snapshots" -version = "0.17.0" +version = "0.18.0" license = "MIT" authors = ["Ryan Dahl "] edition = "2018" diff --git a/core/Cargo.toml b/core/Cargo.toml index d4ae526a72374..56ea6e58f8e43 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.17.0" +version = "0.18.0" edition = "2018" description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio" authors = ["The deno authors "] diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml index 722d860108e36..ebab2a3271db4 100644 --- a/deno_typescript/Cargo.toml +++ b/deno_typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deno_typescript" -version = "0.17.0" +version = "0.18.0" license = "MIT" description = "To compile TypeScript to a snapshot during build.rs" repository = "https://github.com/ry/deno_typescript"