From 6ed367b09852ebc51ae9bcff03e62900c7f45b28 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 15 Nov 2018 23:13:51 -0500 Subject: [PATCH] v0.2.0 Changes since v0.1.12: - First pass at running subprocesses (#1156) - Improve flag parsing (#1200) - Improve fetch() (#1194 #1188 #1102) - Support shebang (#1197) --- Cargo.toml | 2 +- src/version.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6cdd37178d94d3..401406e2f681c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ # crates. [package] name = "deno" -version = "0.1.12" +version = "0.2.0" [dependencies] atty = "=0.2.11" diff --git a/src/version.rs b/src/version.rs index a91115d1ec8c39..03b7d3c04d8953 100644 --- a/src/version.rs +++ b/src/version.rs @@ -3,7 +3,7 @@ use libdeno; use std::ffi::CStr; // TODO Extract this version string from Cargo.toml. -pub const DENO: &str = "0.1.12"; +pub const DENO: &str = "0.2.0"; pub fn v8() -> &'static str { let version = unsafe { libdeno::deno_v8_version() };