Skip to content

Commit

Permalink
v0.1.12
Browse files Browse the repository at this point in the history
- Update to TypeScript 3.1.6 (denoland#1177)
- Fixes Headers type not available. (denoland#1175)
- Reader/Writer to use Uint8Array not ArrayBufferView (denoland#1171)
- Fixes importing modules starting with 'http'. (denoland#1167)
- build: Use target/ instead of out/ (denoland#1153)
- Support repl multiline input (denoland#1165)
  • Loading branch information
ry committed Nov 12, 2018
1 parent 6332eb7 commit 0c740ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# crates.
[package]
name = "deno"
version = "0.1.11"
version = "0.1.12"

[dependencies]
atty = "0.2.11"
Expand Down
3 changes: 2 additions & 1 deletion src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
use libdeno;
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 {
let version = unsafe { libdeno::deno_v8_version() };
Expand Down

0 comments on commit 0c740ff

Please sign in to comment.