mirror of
https://github.com/denoland/deno.git
synced 2025-10-03 07:34:36 +00:00
v0.38.0
This commit is contained in:
parent
3fac487461
commit
d6cb3892d4
5 changed files with 28 additions and 11 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -459,7 +459,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "0.37.1"
|
version = "0.38.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.11.0",
|
"base64 0.11.0",
|
||||||
|
@ -515,7 +515,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.37.1"
|
version = "0.38.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_deref",
|
"derive_deref",
|
||||||
"downcast-rs",
|
"downcast-rs",
|
||||||
|
@ -531,7 +531,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.37.1"
|
version = "0.38.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deno_core",
|
"deno_core",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
17
Releases.md
17
Releases.md
|
@ -6,6 +6,23 @@ 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.38.0 / 2020.03.28
|
||||||
|
|
||||||
|
- feat: Add "deno doc" subcommand (#4500)
|
||||||
|
- feat: Support --inspect, Chrome Devtools support (#4484)
|
||||||
|
- feat: Support Unix Domain Sockets (#4176)
|
||||||
|
- feat: add queueMicrotask to d.ts (#4477)
|
||||||
|
- feat: window.close() (#4474)
|
||||||
|
- fix(console): replace object abbreviation with line breaking (#4425)
|
||||||
|
- fix: add fsEvent notify::Error casts (#4488)
|
||||||
|
- fix: hide source line if error message longer than 150 chars (#4487)
|
||||||
|
- fix: parsing bug (#4483)
|
||||||
|
- fix: remove extra dot in Permission request output (#4471)
|
||||||
|
- refactor: rename ConsoleOptions to InspectOptions (#4493)
|
||||||
|
- upgrade: dprint 0.9.6 (#4509, #4491)
|
||||||
|
- upgrade: prettier 2 for internal code formatting (#4498)
|
||||||
|
- upgrade: rusty_v8 to v0.3.9 (#4505)
|
||||||
|
|
||||||
### v0.37.1 / 2020.03.23
|
### v0.37.1 / 2020.03.23
|
||||||
|
|
||||||
- fix: Statically link the C runtime library on Windows (#4469)
|
- fix: Statically link the C runtime library on Windows (#4469)
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "0.37.1"
|
version = "0.38.0"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -19,12 +19,12 @@ name = "deno"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
deno_core = { path = "../core", version = "0.37.1" }
|
deno_core = { path = "../core", version = "0.38.0" }
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.37.1" }
|
deno_typescript = { path = "../deno_typescript", version = "0.38.0" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { path = "../core", version = "0.37.1" }
|
deno_core = { path = "../core", version = "0.38.0" }
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.37.1" }
|
deno_typescript = { path = "../deno_typescript", version = "0.38.0" }
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
base64 = "0.11.0"
|
base64 = "0.11.0"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.37.1"
|
version = "0.38.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.37.1"
|
version = "0.38.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_core = { path = "../core", version = "0.37.1" }
|
deno_core = { path = "../core", version = "0.38.0" }
|
||||||
serde_json = "1.0.48"
|
serde_json = "1.0.48"
|
||||||
serde = { version = "1.0.104", features = ["derive"] }
|
serde = { version = "1.0.104", features = ["derive"] }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue