summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-10-27 10:54:44 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-10-27 08:13:28 -0700
commitda959e8c878382ce3417ab61db8ccf1ae9a660fa (patch)
tree1a41f4624b1bbbc54296245e1286b5577715bcec /src
parent882a323811bb840b90e6053b4a77009558bc8237 (diff)
v0.1.10
- Add URLSearchParams (#1049) - Implement clone for FetchResponse (#1054) - Use content-type headers when importing from URLs. (#1020) - Use checkJs option, JavaScript will be type checked and users can supply JSDoc type annotations that will be enforced by Deno (#1068) - Add separate http/https cache dirs to DENO_DIR (#971) - Support https in fetch. (#1100) - Add chmod/chmodSync on unix (#1088) - Remove broken features: --deps and trace() (#1103) - Ergonomics: Prompt TTY for permission escalation (#1081)
Diffstat (limited to 'src')
-rw-r--r--src/version.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version.rs b/src/version.rs
index d04f26e3a..54712db59 100644
--- a/src/version.rs
+++ b/src/version.rs
@@ -3,7 +3,7 @@ use libdeno;
use std::ffi::CStr;
// This is the source of truth for the Deno version. Ignore the value in Cargo.toml.
-pub const DENO_VERSION: &str = "0.1.9";
+pub const DENO_VERSION: &str = "0.1.10";
pub fn get_v8_version() -> &'static str {
let v = unsafe { libdeno::deno_v8_version() };