diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-03-28 16:10:06 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-28 16:58:17 -0400 |
commit | b965c7ab367a417fb7bdde2eaf38312179e5c183 (patch) | |
tree | e35c0e665f9c418b5343ab040011c6402b0cce7f | |
parent | bdc455dd25b4c0d14fd30bc32c07206b2b93a007 (diff) |
v0.3.5
-rw-r--r-- | Cargo.lock | 6 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | Releases.md | 24 | ||||
-rw-r--r-- | core/Cargo.toml | 2 |
4 files changed, 29 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index e3c5f18bd..e8cb2f04b 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 291aa7db6..6ccd5dd52 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 0b93d7851..1527a369e 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 18958ca4b..d434bc1d5 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] |