mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
v0.28.0
This commit is contained in:
parent
d4f2fda623
commit
328fef9cd6
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -249,7 +249,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno"
|
||||
version = "0.27.0"
|
||||
version = "0.28.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)",
|
||||
@ -264,7 +264,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_cli"
|
||||
version = "0.27.0"
|
||||
version = "0.28.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)",
|
||||
@ -272,8 +272,8 @@ dependencies = [
|
||||
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"bytes 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"deno 0.27.0",
|
||||
"deno_typescript 0.27.0",
|
||||
"deno 0.28.0",
|
||||
"deno_typescript 0.28.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)",
|
||||
@ -312,9 +312,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deno_typescript"
|
||||
version = "0.27.0"
|
||||
version = "0.28.0"
|
||||
dependencies = [
|
||||
"deno 0.27.0",
|
||||
"deno 0.28.0",
|
||||
"serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"serde_json 1.0.44 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
@ -1610,8 +1610,8 @@ dependencies = [
|
||||
name = "test_plugin"
|
||||
version = "0.0.1"
|
||||
dependencies = [
|
||||
"deno 0.27.0",
|
||||
"deno_cli 0.27.0",
|
||||
"deno 0.28.0",
|
||||
"deno_cli 0.28.0",
|
||||
"futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
|
18
Releases.md
18
Releases.md
@ -6,6 +6,24 @@ https://github.com/denoland/deno/releases
|
||||
We also have one-line install commands at
|
||||
https://github.com/denoland/deno_install
|
||||
|
||||
### v0.28.0 / 2020.01.02
|
||||
|
||||
- feat: Add Deno.dir("executable") (#3526)
|
||||
- feat: Add missing mod.ts files in std (#3509)
|
||||
- fix(repl): Do not crash on async op reject (#3527)
|
||||
- fix(std/encoding/yaml): support document separator in parseAll (#3535)
|
||||
- fix: Allow reading into a 0-length array (#3329)
|
||||
- fix: Drop unnecessary Object.assign from createResolvable() (#3548)
|
||||
- fix: Expose shutdown() and ShutdownMode TS def (#3558, #3560)
|
||||
- fix: Remove wildcard export in uuid module (#3540)
|
||||
- fix: Return null on error in Deno.dir() (#3531)
|
||||
- fix: Use shared HTTP client (#3563)
|
||||
- fix: Use sync ops when clearing the console (#3533)
|
||||
- refactor: Move HttpBody to cli/http_util.rs (#3569)
|
||||
- upgrade: Reqwest to 0.10.0 (#3567)
|
||||
- upgrade: Rust to 1.40.0 (#3542)
|
||||
- upgrade: Tokio 0.2 (#3418, #3571)
|
||||
|
||||
### v0.27.0 / 2019.12.18
|
||||
|
||||
- feat: Support utf8 in file_server (#3495)
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno_cli"
|
||||
version = "0.27.0"
|
||||
version = "0.28.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.27.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.28.0" }
|
||||
|
||||
[dependencies]
|
||||
deno = { path = "../core", version = "0.27.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.27.0" }
|
||||
deno = { path = "../core", version = "0.28.0" }
|
||||
deno_typescript = { path = "../deno_typescript", version = "0.28.0" }
|
||||
|
||||
ansi_term = "0.12.1"
|
||||
atty = "0.2.13"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
[package]
|
||||
name = "deno"
|
||||
version = "0.27.0"
|
||||
version = "0.28.0"
|
||||
edition = "2018"
|
||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||
authors = ["the Deno authors"]
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deno_typescript"
|
||||
version = "0.27.0"
|
||||
version = "0.28.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.27.0" }
|
||||
deno = { path = "../core", version = "0.28.0" }
|
||||
serde_json = "1.0.41"
|
||||
serde = { version = "1.0.102", features = ["derive"] }
|
||||
|
Loading…
Reference in New Issue
Block a user