diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-12 11:52:00 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-12 09:16:00 -0800 |
commit | 0c740ff85d855177d1619276154f63a36ed31557 (patch) | |
tree | 41fab592c9c03acc585e57edb10d6ee7053e2e45 | |
parent | 6332eb78150d510b1c7befea37172e79c842c22c (diff) |
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)
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/version.rs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml index 0ab752211..ddae4e447 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ # crates. [package] name = "deno" -version = "0.1.11" +version = "0.1.12" [dependencies] atty = "0.2.11" diff --git a/src/version.rs b/src/version.rs index 19e673ca6..a91115d1e 100644 --- a/src/version.rs +++ b/src/version.rs @@ -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() }; |