mirror of
https://github.com/denoland/deno.git
synced 2025-01-10 16:11:13 -05:00
v0.1.7
- 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.
This commit is contained in:
parent
1023202634
commit
5307aa94e1
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.6";
|
||||
const DENO_VERSION: &str = "0.1.7";
|
||||
|
||||
pub fn print_version() {
|
||||
let v = unsafe { libdeno::deno_v8_version() };
|
||||
|
|
Loading…
Reference in a new issue