mirror of
https://github.com/denoland/deno.git
synced 2024-10-29 08:58:01 -04:00
v0.1.4
- Support headers in fetch() - Adds many async fs functions: deno.rename() deno.remove(), deno.removeAll(), deno.removeSync(), deno.removeAllSync(), deno.mkdir(), deno.stat(), deno.lstat() deno.readFile() and deno.writeFile(). - Add mode in FileInfo - Access error codes via error.kind - Check --allow-net permissions when using fetch() - Add deno --deps for listing deps of a script.
This commit is contained in:
parent
5bea62ac32
commit
d38b3b585c
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.3";
|
||||
const DENO_VERSION: &str = "0.1.4";
|
||||
|
||||
pub fn print_version() {
|
||||
let v = unsafe { libdeno::deno_v8_version() };
|
||||
|
|
Loading…
Reference in a new issue