summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-10-12 13:19:54 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-10-12 14:44:42 -0400
commitd92c99eabaf28100a8d181b6f289e2e3fc295107 (patch)
treed049dc51b467fea01e28b94bc2ad6a9f5044c86b /src
parent45d3b8955de628db0ef051eeb8e351837b4a3b3e (diff)
v0.1.8
- Fix promise reject issue (#936) - Add --types command line flag. - Add metrics() - Add redirect follow feature #934 - Fix clearTimer bug #942 - Improve error printing #935 - Expose I/O interfaces Closer, Seeker, ReaderCloser, WriteCloser, ReadSeeker, WriteSeeker, ReadWriteCloser, ReadWriteSeeker - Fix silent death on double await #919 - Add Conn.closeRead() and Conn.closeWrite() #903
Diffstat (limited to 'src')
-rw-r--r--src/version.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version.rs b/src/version.rs
index df9cfc58b..bfd47012c 100644
--- a/src/version.rs
+++ b/src/version.rs
@@ -3,7 +3,7 @@ use libdeno;
use std::ffi::CStr;
// This is the source of truth for the Deno version. Ignore the value in Cargo.toml.
-const DENO_VERSION: &str = "0.1.7";
+const DENO_VERSION: &str = "0.1.8";
pub fn print_version() {
let v = unsafe { libdeno::deno_v8_version() };