mirror of
https://github.com/denoland/deno.git
synced 2024-12-23 07:44:48 -05:00
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
This commit is contained in:
parent
45d3b8955d
commit
d92c99eaba
1 changed files with 1 additions and 1 deletions
|
@ -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() };
|
||||
|
|
Loading…
Reference in a new issue