summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-06-08 14:44:45 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-06-08 15:16:34 -0400
commitd60bdb6350f2583e35d020f6cebb6aa30262fbcc (patch)
tree04cfeb0bb6428e0dc342dd286fb74e36c4fcdf23
parent307e0927531025dd707a0f4dc3fd549b65598eb2 (diff)
v0.8.0
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md26
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
4 files changed, 31 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index c5b365a24..4b51253da 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -197,7 +197,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.7.0"
+version = "0.8.0"
dependencies = [
"futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -209,12 +209,12 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.7.0"
+version = "0.8.0"
dependencies = [
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "deno 0.7.0",
+ "deno 0.8.0",
"dirs 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
"flatbuffers 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.1.27 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Releases.md b/Releases.md
index 95851b3fe..fd4341c4b 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.8.0 / 2019.06.08
+
+In deno:
+
+- feat: Add 'bundle' subcommand. (#2467)
+- feat: Handle compiler diagnostics in Rust (#2445)
+- feat: add deno fmt --stdout option (#2439)
+- feat: CLI defaults to run subcommand (#2451)
+- fix: Compiler exit before emit if preEmitDiagnostics found (#2441)
+- fix: Deno.core.evalContext & Deno.core.print (#2465)
+- fix: Improve setup.py for package managers (#2423)
+- fix: Use body when Request instance is passed to fetch (#2435)
+- perf: Create fewer threads (#2476)
+- upgrade: TypeScript to 3.5.1 (#2437)
+- upgrade: std/prettier@0.5.0 to std/prettier@0.7.0 (#2425)
+
+In deno_std:
+
+- ci: Check file changes during test (denoland/deno_std#476)
+- ci: Implement strict mode (denoland/deno_std#453)
+- ci: Make CI config DRY (denoland/deno_std#470)
+- encoding/csv: add easy api (denoland/deno_std#458)
+- io: make port BufReader.readByte() return
+ `number | EOF`(denoland/deno_std#472)
+- ws: Add sec-websocket-version to handshake header (denoland/deno_std#468)
+
### v0.7.0 / 2019.05.29
In deno:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 82b0a47eb..d2481bb6e 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -12,7 +12,7 @@ path = "main.rs"
[package]
name = "deno_cli"
-version = "0.7.0"
+version = "0.8.0"
edition = "2018"
[dependencies]
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 7e1c7ff4d..301606321 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.7.0"
+version = "0.8.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]