1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00
This commit is contained in:
Ryan Dahl 2019-01-19 11:36:14 -05:00
parent f9b167deb0
commit a47d545e4d
3 changed files with 10 additions and 2 deletions

2
Cargo.lock generated
View file

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

View file

@ -6,7 +6,7 @@
# crates.
[package]
name = "deno"
version = "0.2.7"
version = "0.2.8"
edition = "2018"
[dependencies]

View file

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