summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock16
-rw-r--r--Releases.md24
-rw-r--r--cli/Cargo.toml8
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 39 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ee14d8d71..0effe6b0b 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -274,7 +274,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.26.0"
+version = "0.27.0"
dependencies = [
"downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -289,15 +289,15 @@ dependencies = [
[[package]]
name = "deno_cli"
-version = "0.26.0"
+version = "0.27.0"
dependencies = [
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
"base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
- "deno 0.26.0",
- "deno_typescript 0.26.0",
+ "deno 0.27.0",
+ "deno_typescript 0.27.0",
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"dlopen 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -337,9 +337,9 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.26.0"
+version = "0.27.0"
dependencies = [
- "deno 0.26.0",
+ "deno 0.27.0",
"serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)",
]
@@ -1551,8 +1551,8 @@ dependencies = [
name = "test_plugin"
version = "0.0.1"
dependencies = [
- "deno 0.26.0",
- "deno_cli 0.26.0",
+ "deno 0.27.0",
+ "deno_cli 0.27.0",
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Releases.md b/Releases.md
index 2fba1f389..45fb9e2a6 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,30 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.27.0 / 2019.12.18
+
+- feat: Support utf8 in file_server (#3495)
+- feat: add help & switch to flags to file_server (#3489)
+- feat: fetch should support URL instance as input (#3496)
+- feat: replace Deno.homeDir with Deno.dir (#3491, #3518)
+- feat: show detailed version with --version (#3507)
+- fix(installer): installs to the wrong directory on Windows (#3462)
+- fix(std/http): close connection on .respond() error (#3475)
+- fix(std/node): better error message for read perm in require() (#3502)
+- fix(timer): due/now Math.max instead of min (#3477)
+- fix: Improve empty test case error messages (#3514)
+- fix: Only swallow NotFound errors in std/fs/expandGlob() (#3479)
+- fix: decoding uri in file_server (#3187)
+- fix: file_server should get file and fileInfo concurrently (#3486)
+- fix: file_server swallowing permission errors (#3467)
+- fix: isolate tests silently failing (#3459)
+- fix: permission errors are swallowed in fs.exists, fs.emptyDir, fs.copy
+ (#3493, #3501, #3504)
+- fix: plugin ops should change op count metrics (#3455)
+- fix: release assets not being executable (#3480)
+- upgrade: tokio 0.2 in deno_core_http_bench, take2 (#3435)
+- upgrade: upgrade subcommand links to v0.26.0 (#3492)
+
### v0.26.0 / 2019.12.05
- feat: Add --no-remote, rename --no-fetch to --cached-only (#3417)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 4be333ee8..dacefa249 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_cli"
-version = "0.26.0"
+version = "0.27.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@@ -19,11 +19,11 @@ name = "deno"
path = "main.rs"
[build-dependencies]
-deno_typescript = { path = "../deno_typescript", version = "0.26.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.27.0" }
[dependencies]
-deno = { path = "../core", version = "0.26.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.26.0" }
+deno = { path = "../core", version = "0.27.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.27.0" }
ansi_term = "0.12.1"
atty = "0.2.13"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index e39c5e8a2..47f229d13 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.26.0"
+version = "0.27.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml
index 1cd5c53fd..911c8f255 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.26.0"
+version = "0.27.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
@@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"
[dependencies]
-deno = { path = "../core", version = "0.26.0" }
+deno = { path = "../core", version = "0.27.0" }
serde_json = "1.0.41"
serde = { version = "1.0.102", features = ["derive"] }