From b965c7ab367a417fb7bdde2eaf38312179e5c183 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 28 Mar 2019 16:10:06 -0400 Subject: [PATCH] v0.3.5 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- Releases.md | 24 ++++++++++++++++++++++++ core/Cargo.toml | 2 +- 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3c5f18bd8..e8cb2f04b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -199,11 +199,11 @@ dependencies = [ [[package]] name = "deno" -version = "0.3.4" +version = "0.3.5" 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)", - "deno_core 0.0.1", + "deno_core 0.3.5", "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)", "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", @@ -235,7 +235,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.0.1" +version = "0.3.5" dependencies = [ "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 291aa7db6d..6ccd5dd52a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ path = "cli/main.rs" [package] name = "deno" -version = "0.3.4" +version = "0.3.5" edition = "2018" [dependencies] diff --git a/Releases.md b/Releases.md index 0b93d78516..1527a369e4 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases We also have one-line install commands at https://github.com/denoland/deno_install +### v0.3.5 / 2019.03.28 + +In deno: + +- Add Process.stderrOutput() (#1828) +- Check params in Event and CustomEvent (#2011, #1997) +- Merge --reload and --recompile flags (#2003) +- Add Deno.openSync, .readSync, .writeSync, .seekSync (#2000) +- Do not close file on invalid seek mode (#2004) +- Fix bug when shared queue is overflowed (#1992) +- core: Resolve callback moved from Behavior to mod_instantiate() (#1999) +- core: libdeno and DenoCore renamed to Deno.core (#1998) +- core: Allow terminating an Isolate from another thread (#1982) + +In deno_std: + +- Add TOML parsing module (#300) +- testing: turn off exitOnFail by default (#307, #309) +- Fix assertEquals for RegExp & Date (#305) +- Fix prettier check in empty files (#302) +- remove unnecessary path.resolve in move/readJson/writeJson (#292) +- fix: fs.exists not work for symlink (#291) +- Add prettier styling options (#281) + ### v0.3.4 / 2019.03.20 In deno itself: diff --git a/core/Cargo.toml b/core/Cargo.toml index 18958ca4bf..d434bc1d52 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno_core" -version = "0.0.1" +version = "0.3.5" edition = "2018" [lib]