summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-06-25 09:31:51 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-06-25 07:09:46 -0700
commitc56df45355c8e68eabbfa62021e7ca7484115c0b (patch)
tree74965f1ee62a6e07994e51fe242bf0a5fa2602a9
parent3a4d88475b40a17f2ce17b775a3f07c78be83d79 (diff)
v0.10.0
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md29
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
4 files changed, 34 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index fa227869d..86b1309e4 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -197,7 +197,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.9.0"
+version = "0.10.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)",
@@ -210,12 +210,12 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.9.0"
+version = "0.10.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.9.0",
+ "deno 0.10.0",
"dirs 2.0.1 (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 d0bc257d1..786d39940 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,35 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.10.0 / 2019.06.25
+
+In deno:
+
+- feat: improve module download progress (#2576)
+- feat: improve 'deno install' (#2551)
+- feat: log permission access with -L=info (#2518)
+- feat: redirect process stdio to file (#2554)
+- fix: add encodeInto to TextEncoder (#2558)
+- fix: clearTimeout should convert to number (#2539)
+- fix: clearTimeout.name / clearInterval.name (#2540)
+- fix: event `isTrusted` is enumerable (#2543)
+- fix: fetch() body now async iterable (#2563)
+- fix: fetch() now handles redirects (#2561)
+- fix: prevent multiple downloads of modules (#2477)
+- fix: silent failure of WebAssembly.instantiate() (#2548)
+- fix: urlSearchParams custom symbol iterator (#2537)
+
+In deno_std
+
+- feat(testing): Pretty output + Silent mode (denoland/deno_std#314)
+- feat: Add os/userHomeDir (denoland/deno_std#521)
+- feat: add catjson example (denoland/deno_std#517)
+- feat: add encoding/hex module (denoland/deno_std#434)
+- feat: improve installer (denoland/deno_std#512, denoland/deno_std#510,
+ denoland/deno_std#499)
+- fix: bundle/run handles Deno.args better. (denoland/deno_std#514)
+- fix: file server should order filenames (denoland/deno_std#511)
+
### v0.9.0 / 2019.06.15
In deno:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 9a6d18c1a..32f1588b0 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -12,7 +12,7 @@ path = "main.rs"
[package]
name = "deno_cli"
-version = "0.9.0"
+version = "0.10.0"
edition = "2018"
[dependencies]
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 953f41a31..f4ab8c1e9 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.9.0"
+version = "0.10.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]