diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-20 17:00:27 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-20 17:30:17 -0700 |
commit | c85311dd7dbad09242633d2ee7a83fdb1cbd1d7f (patch) | |
tree | ae201a7d50a8575ba1e1df07ce21de2361867661 /src | |
parent | bcf10bcf27daef5979f8e8844110eb4ff6c33a9d (diff) |
v0.1.9
- Performance and stability improvements on all platforms.
- Add cwd() and chdir() #907
- Specify deno_dir location with env var DENO_DIR #970
- Make fetch() header compliant with the current spec #1019
- Upgrade TypeScript to 3.1.3
- Upgrade V8 to 7.1.302.4
Diffstat (limited to 'src')
-rw-r--r-- | src/version.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/version.rs b/src/version.rs index 475ab319e..d04f26e3a 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.8"; +pub const DENO_VERSION: &str = "0.1.9"; pub fn get_v8_version() -> &'static str { let v = unsafe { libdeno::deno_v8_version() }; |