From e6121762f8bf3c531c4c60229ff4a156ae21d931 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 7 Dec 2018 16:31:56 -0500 Subject: [PATCH] v0.2.2 - Don't crash when .mime file not exist in cache (#1291) - Process source maps in Rust instead of JS (#1280) - Use alternate TextEncoder/TextDecoder implementation (#1281) - Upgrade flatbuffers to 80d148 - Fix memory leaks (#1265, #1275) --- Cargo.toml | 2 +- src/version.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d7cd0a5fe6..a00b34f7ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ # crates. [package] name = "deno" -version = "0.2.1" +version = "0.2.2" [dependencies] atty = "=0.2.11" diff --git a/src/version.rs b/src/version.rs index 48cc581e62..85238749e1 100644 --- a/src/version.rs +++ b/src/version.rs @@ -3,7 +3,7 @@ use libdeno; use std::ffi::CStr; // TODO Extract this version string from Cargo.toml. -pub const DENO: &str = "0.2.1"; +pub const DENO: &str = "0.2.2"; pub fn v8() -> &'static str { let version = unsafe { libdeno::deno_v8_version() };