This commit is contained in:
Ryan Dahl 2019-03-13 12:24:01 -04:00
parent 7e09221031
commit 3dbb06e699
3 changed files with 21 additions and 2 deletions

2
Cargo.lock generated
View File

@ -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)",

View File

@ -13,7 +13,7 @@ members = [
[package]
name = "deno"
version = "0.3.2"
version = "0.3.3"
edition = "2018"
[dependencies]

View File

@ -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: