mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
v0.1.3
* Fixes module resolution error #645 * Better flag parsing * lStatSync -> lstatSync * Added deno.renameSync() * Added deno.mkdirSync() * Fix circular dependencies #653 * Added deno.env() and --allow-env
This commit is contained in:
parent
49c0cb578d
commit
59f3fca166
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ use libdeno;
|
||||||
use std::ffi::CStr;
|
use std::ffi::CStr;
|
||||||
|
|
||||||
// This is the source of truth for the Deno version. Ignore the value in Cargo.toml.
|
// This is the source of truth for the Deno version. Ignore the value in Cargo.toml.
|
||||||
const DENO_VERSION: &str = "0.1.2";
|
const DENO_VERSION: &str = "0.1.3";
|
||||||
|
|
||||||
pub fn print_version() {
|
pub fn print_version() {
|
||||||
let v = unsafe { libdeno::deno_v8_version() };
|
let v = unsafe { libdeno::deno_v8_version() };
|
||||||
|
|
Loading…
Reference in a new issue