mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
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)
This commit is contained in:
parent
96c3641fff
commit
d083f7271b
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
# crates.
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.1.12"
|
||||
version = "0.2.0"
|
||||
|
||||
[dependencies]
|
||||
atty = "=0.2.11"
|
||||
|
|
|
@ -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() };
|
||||
|
|
Loading…
Reference in a new issue