Skip to content

Commit

Permalink
v0.1.4
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
ry committed Sep 13, 2018
1 parent 5bea62a commit d38b3b5
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.3";
const DENO_VERSION: &str = "0.1.4";

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

0 comments on commit d38b3b5

Please sign in to comment.