summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-30 08:35:18 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-30 18:29:05 -0400
commitcce3bd470b19e1c2eab6530d06c48949891a56fc (patch)
tree589de1295726f642e29cb20092f08424c266b046 /src
parent0ec629d10555ad617f3ebbafcb3276a9d96a8a86 (diff)
v0.1.2
* Added https import support. * Added deno.makeTempDirSync(). * Added deno.lstatSync() and deno.statSync().
Diffstat (limited to 'src')
-rw-r--r--src/version.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version.rs b/src/version.rs
index a8405c303..890b4d152 100644
--- a/src/version.rs
+++ b/src/version.rs
@@ -3,7 +3,7 @@ use binding;
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.1";
+const DENO_VERSION: &str = "0.1.2";
pub fn print_version() {
let v = unsafe { binding::deno_v8_version() };