mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 15:24:46 -05:00
v0.2.1
- Allow async functions in REPL (#1233) - Handle Location header relative URI (#1240) - Add deno.readAll() (#1234) - Add Process.output (#1235) - Upgrade to TypeScript 3.2.1 - Upgrade crates: tokio 0.1.13, hyper 0.12.16, ring 0.13.5
This commit is contained in:
parent
b7178e1704
commit
b5c6bfa0c8
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
# crates.
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
|
||||
[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.2.0";
|
||||
pub const DENO: &str = "0.2.1";
|
||||
|
||||
pub fn v8() -> &'static str {
|
||||
let version = unsafe { libdeno::deno_v8_version() };
|
||||
|
|
Loading…
Reference in a new issue