summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml2
-rw-r--r--src/version.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 88774a752..0ab752211 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@
# crates.
[package]
name = "deno"
-version = "0.0.0"
+version = "0.1.11"
[dependencies]
atty = "0.2.11"
diff --git a/src/version.rs b/src/version.rs
index 5a04d48fa..ce95601de 100644
--- a/src/version.rs
+++ b/src/version.rs
@@ -2,8 +2,8 @@
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.10";
+// Both the verson in Cargo.toml and this string must be kept in sync.
+pub const DENO_VERSION: &str = "0.1.11";
pub fn get_v8_version() -> &'static str {
let v = unsafe { libdeno::deno_v8_version() };