From c6e2fffc1388cdb4411d6c2cff36c4febb7c75d5 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 23 Dec 2018 16:24:02 -0500 Subject: [PATCH] v0.2.4 - "cargo build" support (#1369 #1296 #1377 #1379) - Remove support for extensionless import (#1396) - Upgrade V8 to 7.2.502.16 (#1403) - make stdout unbuffered (#1355) - Implement `Body.formData` for fetch (#1393) - Improve handling of non-coercable objects in assertEqual (#1385) - Avoid fetch segfault on empty Uri (#1394) - Expose deno.inspect (#1378) - Add illegal header name and value guards (#1375) - Fix URLSearchParams set() and constructor() (#1368) - Remove prebuilt v8 support (#1369) - Enable jumbo build in release. (#1362) - Add URL implementation (#1359) - Add console.count and console.time (#1358) - runtime arg check `URLSearchParams` (#1390) --- Cargo.lock | 2 +- Cargo.toml | 2 +- Releases.md | 18 ++++++++++++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 022f0f5cde37b..a67ce171b330e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -151,7 +151,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.2.3" +version = "0.2.4" dependencies = [ "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "dirs 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 1972593f6a8e2..631f70793309d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ # crates. [package] name = "deno" -version = "0.2.3" +version = "0.2.4" [dependencies] atty = "=0.2.11" diff --git a/Releases.md b/Releases.md index eefa56150f05c..8ec50444c954c 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases We also have a one-line install commands at https://github.com/denoland/deno_install +### v0.2.4 / 2018.12.23 + +- "cargo build" support (#1369 #1296 #1377 #1379) +- Remove support for extensionless import (#1396) +- Upgrade V8 to 7.2.502.16 (#1403) +- make stdout unbuffered (#1355) +- Implement `Body.formData` for fetch (#1393) +- Improve handling of non-coercable objects in assertEqual (#1385) +- Avoid fetch segfault on empty Uri (#1394) +- Expose deno.inspect (#1378) +- Add illegal header name and value guards (#1375) +- Fix URLSearchParams set() and constructor() (#1368) +- Remove prebuilt v8 support (#1369) +- Enable jumbo build in release. (#1362) +- Add URL implementation (#1359) +- Add console.count and console.time (#1358) +- runtime arg check `URLSearchParams` (#1390) + ### v0.2.3 / 2018.12.14 - console.assert should not throw error (#1335)