summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-01-14 19:42:32 -0500
committerRyan Dahl <ry@tinyclouds.org>2019-01-14 20:25:57 -0500
commiteb4a19ef6ef1c5ae797fb515c45627deca65cf31 (patch)
tree622943451629eb0eaba54e05aa0292b5099df796
parent526fdac053f125b641b07b78b81ffa9962622e09 (diff)
v0.2.7
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--Releases.md9
3 files changed, 11 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 1d4043be2..5576c5920 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -168,7 +168,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.2.6"
+version = "0.2.7"
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 1a59c26cd..bf7963e80 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@
# crates.
[package]
name = "deno"
-version = "0.2.6"
+version = "0.2.7"
edition = "2018"
[dependencies]
diff --git a/Releases.md b/Releases.md
index 1949e1c4b..b1beac210 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,15 @@ https://github.com/denoland/deno/releases
We also have a one-line install commands at
https://github.com/denoland/deno_install
+### v0.2.7 / 2019.01.14
+
+- Use rust 2018 edition
+- Native ES modules (#1460 #1492 #1512 #1514)
+- Properly parse network addresses (#1515)
+- Added rid to Conn interface (#1513)
+- Prevent segfault when eval throws an error (#1411)
+- Add --allow-all flag (#1482)
+
### v0.2.6 / 2019.01.06
- Implement console.groupCollapsed (#1452)