Skip to content

Commit

Permalink
v0.1.7
Browse files Browse the repository at this point in the history
- Improve fetch headers (#853)
- Add deno.truncate (#805)
- Add copyFile/copyFileSync (#863)
- Limit depth of output in console.log for nested objects, and add
  console.dir (#826)
- Guess extensions on extension not provided (#859)
- Renames:
  deno.platform -> deno.platform.os
  deno.arch -> deno.platform.arch
- Upgrade TS to 3.0.3
- Add readDirSync(), readDir()
- Add support for TCP servers and clients. (#884)
  Adds deno.listen(), deno.dial(), deno.Listener and deno.Conn.
  • Loading branch information
ry committed Oct 4, 2018
1 parent 1023202 commit 5307aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/version.rs
Expand Up @@ -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.6";
const DENO_VERSION: &str = "0.1.7";

pub fn print_version() {
let v = unsafe { libdeno::deno_v8_version() };
Expand Down

0 comments on commit 5307aa9

Please sign in to comment.