mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
v0.1.11
- Performance and stability improvements on all platforms. - Add repl (#998) - Add deno.Buffer (#1121) - Support cargo check (#1128) - Upgrade Rust crates and Flatbuffers. (#1145, #1127) - Add helper to turn deno.Reader into async iterator (#1130) - Add ability to load JSON as modules (#1065) - Add deno.resources() (#1119) - Add application/x-typescript mime type support (#1111)
This commit is contained in:
parent
5c51cffacf
commit
e1d5f82d36
2 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@
|
|||
# crates.
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.0.0"
|
||||
version = "0.1.11"
|
||||
|
||||
[dependencies]
|
||||
atty = "0.2.11"
|
||||
|
|
|
@ -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() };
|
||||
|
|
Loading…
Reference in a new issue