mirror of
https://github.com/denoland/deno.git
synced 2025-01-18 03:44:05 -05:00
v0.1.12
- Update to TypeScript 3.1.6 (#1177) - Fixes Headers type not available. (#1175) - Reader/Writer to use Uint8Array not ArrayBufferView (#1171) - Fixes importing modules starting with 'http'. (#1167) - build: Use target/ instead of out/ (#1153) - Support repl multiline input (#1165)
This commit is contained in:
parent
6332eb7815
commit
0c740ff85d
2 changed files with 3 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
||||||
# crates.
|
# crates.
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "0.1.11"
|
version = "0.1.12"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
atty = "0.2.11"
|
atty = "0.2.11"
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
use libdeno;
|
use libdeno;
|
||||||
use std::ffi::CStr;
|
use std::ffi::CStr;
|
||||||
|
|
||||||
pub const DENO: &str = "0.1.11";
|
// TODO Extract this version string from Cargo.toml.
|
||||||
|
pub const DENO: &str = "0.1.12";
|
||||||
|
|
||||||
pub fn v8() -> &'static str {
|
pub fn v8() -> &'static str {
|
||||||
let version = unsafe { libdeno::deno_v8_version() };
|
let version = unsafe { libdeno::deno_v8_version() };
|
||||||
|
|
Loading…
Add table
Reference in a new issue