This commit is contained in:
Ryan Dahl 2019-12-18 18:13:06 -05:00 committed by Ry Dahl
parent ef30d376db
commit fcae4a7c0d
5 changed files with 39 additions and 15 deletions

16
Cargo.lock generated
View File

@ -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)",
]

View File

@ -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)

View File

@ -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"

View File

@ -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"]

View File

@ -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"] }