mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
v0.23.0
This commit is contained in:
parent
1726194452
commit
a611788834
5 changed files with 22 additions and 13 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -253,7 +253,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "0.22.0"
|
version = "0.23.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"downcast-rs 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"downcast-rs 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
|
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -267,14 +267,14 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_cli"
|
name = "deno_cli"
|
||||||
version = "0.22.0"
|
version = "0.23.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"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)",
|
"atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"byteorder 1.3.2 (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)",
|
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"deno 0.22.0",
|
"deno 0.23.0",
|
||||||
"deno_typescript 0.22.0",
|
"deno_typescript 0.23.0",
|
||||||
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
|
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
@ -316,9 +316,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.22.0"
|
version = "0.23.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deno 0.22.0",
|
"deno 0.23.0",
|
||||||
"serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde 1.0.100 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
"serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
|
@ -6,6 +6,15 @@ https://github.com/denoland/deno/releases
|
||||||
We also have one-line install commands at
|
We also have one-line install commands at
|
||||||
https://github.com/denoland/deno_install
|
https://github.com/denoland/deno_install
|
||||||
|
|
||||||
|
### v0.23.0 / 2019.11.04
|
||||||
|
|
||||||
|
- feat: Add serveTLS and listenAndServeTLS (#3257)
|
||||||
|
- feat: Lockfile support (#3231)
|
||||||
|
- feat: Adds custom inspect method for URL (#3241)
|
||||||
|
- fix: Support for deep `Map` equality with `asserts#equal` (#3236, #3258)
|
||||||
|
- fix: Make EOF unique symbol (#3244)
|
||||||
|
- fix: Prevent customInspect error from crashing console (#3226)
|
||||||
|
|
||||||
### v0.22.0 / 2019.10.28
|
### v0.22.0 / 2019.10.28
|
||||||
|
|
||||||
- feat: Deno.listenTLS (#3152)
|
- feat: Deno.listenTLS (#3152)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_cli"
|
name = "deno_cli"
|
||||||
version = "0.22.0"
|
version = "0.23.0"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -19,11 +19,11 @@ name = "deno"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.22.0" }
|
deno_typescript = { path = "../deno_typescript", version = "0.23.0" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno = { path = "../core", version = "0.22.0" }
|
deno = { path = "../core", version = "0.23.0" }
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.22.0" }
|
deno_typescript = { path = "../deno_typescript", version = "0.23.0" }
|
||||||
|
|
||||||
ansi_term = "0.12.1"
|
ansi_term = "0.12.1"
|
||||||
atty = "0.2.13"
|
atty = "0.2.13"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "0.22.0"
|
version = "0.23.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.22.0"
|
version = "0.23.0"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "To compile TypeScript to a snapshot during build.rs"
|
description = "To compile TypeScript to a snapshot during build.rs"
|
||||||
repository = "https://github.com/denoland/deno"
|
repository = "https://github.com/denoland/deno"
|
||||||
|
@ -19,6 +19,6 @@ exclude = [
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno = { path = "../core", version = "0.22.0" }
|
deno = { path = "../core", version = "0.23.0" }
|
||||||
serde_json = "1.0.40"
|
serde_json = "1.0.40"
|
||||||
serde = { version = "1.0.100", features = ["derive"] }
|
serde = { version = "1.0.100", features = ["derive"] }
|
||||||
|
|
Loading…
Reference in a new issue