diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 18:28:15 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-30 16:28:27 -0800 |
commit | b5c6bfa0c8a3df9598211bc68db5408f5eec147d (patch) | |
tree | 097253bf07de48a33c3f93b8244d557eb1daf34c | |
parent | b7178e170466dc550e23e9b08dce9d07d9b4974c (diff) |
v0.2.1
- Allow async functions in REPL (#1233)
- Handle Location header relative URI (#1240)
- Add deno.readAll() (#1234)
- Add Process.output (#1235)
- Upgrade to TypeScript 3.2.1
- Upgrade crates: tokio 0.1.13, hyper 0.12.16, ring 0.13.5
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/version.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml index bc108255e..82aab94ff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ # crates. [package] name = "deno" -version = "0.2.0" +version = "0.2.1" [dependencies] atty = "=0.2.11" diff --git a/src/version.rs b/src/version.rs index 03b7d3c04..48cc581e6 100644 --- a/src/version.rs +++ b/src/version.rs @@ -3,7 +3,7 @@ use libdeno; use std::ffi::CStr; // TODO Extract this version string from Cargo.toml. -pub const DENO: &str = "0.2.0"; +pub const DENO: &str = "0.2.1"; pub fn v8() -> &'static str { let version = unsafe { libdeno::deno_v8_version() }; |