From 3dbb06e699398549e8cfabc896ef3256ab433cba Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 13 Mar 2019 12:24:01 -0400 Subject: [PATCH] v0.3.3 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Releases.md | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2a1a111351..5e5a72c558 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -199,7 +199,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.3.2" +version = "0.3.3" 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)", diff --git a/Cargo.toml b/Cargo.toml index 2d1e6041f2..b603ac593c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ [package] name = "deno" -version = "0.3.2" +version = "0.3.3" edition = "2018" [dependencies] diff --git a/Releases.md b/Releases.md index c1f046c7ed..beab243059 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,25 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.3.3 / 2019.03.13 + +In deno itself: + +- Rename Deno.build.gnArgs to Deno.build.args (#1912, #1909) +- Upgrade to TypeScript 3.3 (#1908) +- Basic Arm64 support (#1887) +- Remove builtin "deno" module, use Deno global var (#1895) +- Improvements to internal deno_core crate (#1904, #1914) +- Add --no-prompt flag for non-interactive environments (#1913) + +In deno_std + +- Add fs extras: ensureDir, ensireFile, readJson, emptyDir, move, exists (#269, + #266, #264, #263, #260) +- Datetime module improvement (#259) +- asserts: Add unimplemented, unreachable, assertNotEquals, assertArrayContains + (#246, #248) + ### v0.3.2 / 2019.03.06 In deno itself: