diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-19 11:36:14 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-01-19 11:54:45 -0500 |
commit | a47d545e4d0831713d0107e86cead7b4506a9bf6 (patch) | |
tree | 182dd2e3342f4b79772e71aae896fe8a891a2654 | |
parent | f9b167deb07a650590b7f1eef8fe86bf9e22d211 (diff) |
v0.2.8
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | Releases.md | 8 |
3 files changed, 10 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock index 5576c5920..a9731ddd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -168,7 +168,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.2.7" +version = "0.2.8" 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 bf7963e80..e56f5bbe9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ # crates. [package] name = "deno" -version = "0.2.7" +version = "0.2.8" edition = "2018" [dependencies] diff --git a/Releases.md b/Releases.md index b1beac210..fd06018de 100644 --- a/Releases.md +++ b/Releases.md @@ -6,6 +6,14 @@ https://github.com/denoland/deno/releases We also have a one-line install commands at https://github.com/denoland/deno_install +### v0.2.8 / 2019.01.19 + +- Add --prefetch flag for deps prefetch without running (#1475) +- Kill all pending accepts when TCP listener is closed (#1517) +- Add globalThis definition to runtime (#1534) +- mkdir should not be recursive by default (#1530) +- Avoid crashes on ES module resolution when module not found (#1546) + ### v0.2.7 / 2019.01.14 - Use rust 2018 edition |