summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-05-29 17:47:12 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-05-29 18:42:49 -0400
commit5265bd7cb1f86af99b01d73c537d52a50df95fe2 (patch)
treefeedc11170dfdce8056c12cc000d6cf3416c0cf9
parent856c44213b7faf507d4b481cfc170b2fd08f971a (diff)
v0.7.0
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md34
-rw-r--r--cli/Cargo.toml2
-rw-r--r--core/Cargo.toml2
4 files changed, 39 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5b1b93857..3618fdc85 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -197,7 +197,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.6.0"
+version = "0.7.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.6.0"
+version = "0.7.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.6.0",
+ "deno 0.7.0",
"dirs 1.0.5 (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 2cdfc80dd..95851b3fe 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,40 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.7.0 / 2019.05.29
+
+In deno:
+
+- TS compiler refactor (#2380)
+- add EventTarget implementation (#2377)
+- add module and line no for Rust logger (#2409)
+- re-fix permissions for dial and listen (#2400)
+- Fix concurrent accepts (#2403)
+- Rename --allow-high-precision to --allow-hrtime (#2398)
+- Use tagged version of prettier in CLI (#2387)
+
+In deno_std:
+
+- io: refactor BufReader/Writer interfaces to be more idiomatic
+ (denoland/deno_std#444)
+- http: add rfc7230 handling (denoland/deno_std#451)
+- http: add ParseHTTPVersion (denoland/deno_std#452)
+- rename strings/strings.ts to strings/mod.ts (denoland/deno_std#449)
+- Prettier: support for specified files and glob mode (denoland/deno_std#438)
+- Add encoding/csv (denoland/deno_std#432)
+- rename bytes/bytes.ts to bytes/mod.ts
+- remove function prefix of bytes module
+- add bytes.repeat() (denoland/deno_std#446)
+- http: fix content-length checking (denoland/deno_std#437)
+- Added isGlob function (denoland/deno_std#433)
+- http: send an empty response body if none is provided (denoland/deno_std#429)
+- http: make server handle bad client requests properly (denoland/deno_std#419)
+- fix(fileserver): wrong url href of displayed files (denoland/deno_std#426)
+- http: delete conn parameter in readRequest (denoland/deno_std#430)
+- Rename //multipart/multipart.ts to //mime/multipart.ts (denoland/deno_std#420)
+- feat(prettier): output to stdout instead of write file by default unless
+ specified --write flag (denoland/deno_std#332)
+
### v0.6.0 / 2019.05.20
In deno:
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index c1b5387f1..1450ce7b2 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -12,7 +12,7 @@ path = "main.rs"
[package]
name = "deno_cli"
-version = "0.6.0"
+version = "0.7.0"
edition = "2018"
[dependencies]
diff --git a/core/Cargo.toml b/core/Cargo.toml
index e555c5862..fdd458534 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.6.0"
+version = "0.7.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]