Skip to content

Commit

Permalink
v0.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Dec 18, 2019
1 parent ef30d37 commit fcae4a7
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 15 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions Releases.md
Expand Up @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_cli"
version = "0.26.0"
version = "0.27.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -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"]
Expand Down
4 changes: 2 additions & 2 deletions 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"
Expand All @@ -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"] }

0 comments on commit fcae4a7

Please sign in to comment.