mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 13:14:48 +00:00
v1.0.5
This commit is contained in:
parent
aa39dfc62f
commit
515d19d901
6 changed files with 28 additions and 12 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -435,7 +435,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.0.4"
|
version = "1.0.5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atty",
|
"atty",
|
||||||
"base64 0.12.1",
|
"base64 0.12.1",
|
||||||
|
@ -488,7 +488,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.47.0"
|
version = "0.47.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_deref",
|
"derive_deref",
|
||||||
"downcast-rs",
|
"downcast-rs",
|
||||||
|
@ -504,7 +504,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deno_typescript"
|
name = "deno_typescript"
|
||||||
version = "0.47.0"
|
version = "0.47.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deno_core",
|
"deno_core",
|
||||||
"serde",
|
"serde",
|
||||||
|
|
16
Releases.md
16
Releases.md
|
@ -6,6 +6,22 @@ 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
|
||||||
|
|
||||||
|
### 1.0.5 / 2020.06.03
|
||||||
|
|
||||||
|
Changes in the CLI:
|
||||||
|
|
||||||
|
- fix(fetch): Support 101 status code (#6059)
|
||||||
|
- fix: REPL BorrowMutError panic (#6055)
|
||||||
|
- fix: dynamic import BorrowMutError (#6065)
|
||||||
|
- upgrade: dprint 0.19.1 and swc_ecma_parser 0.24.3 (#6068)
|
||||||
|
- upgrade: rusty_v8 0.5.0 (#6070)
|
||||||
|
|
||||||
|
Changes in std version 0.56.0:
|
||||||
|
|
||||||
|
- feat(std/testing): benching progress callback (#5941)
|
||||||
|
- feat(std/encoding): add base64url module (#5976)
|
||||||
|
- fix(std/testing/asserts): Format values in assertArrayContains() (#6060)
|
||||||
|
|
||||||
### 1.0.4 / 2020.06.02
|
### 1.0.4 / 2020.06.02
|
||||||
|
|
||||||
Changes in the CLI:
|
Changes in the CLI:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno"
|
name = "deno"
|
||||||
version = "1.0.4"
|
version = "1.0.5"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["the Deno authors"]
|
authors = ["the Deno authors"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
@ -15,12 +15,12 @@ name = "deno"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
deno_core = { path = "../core", version = "0.47.0" }
|
deno_core = { path = "../core", version = "0.47.1" }
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.47.0" }
|
deno_typescript = { path = "../deno_typescript", version = "0.47.1" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
deno_core = { path = "../core", version = "0.47.0" }
|
deno_core = { path = "../core", version = "0.47.1" }
|
||||||
deno_typescript = { path = "../deno_typescript", version = "0.47.0" }
|
deno_typescript = { path = "../deno_typescript", version = "0.47.1" }
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
base64 = "0.12.1"
|
base64 = "0.12.1"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_core"
|
name = "deno_core"
|
||||||
version = "0.47.0"
|
version = "0.47.1"
|
||||||
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.47.0"
|
version = "0.47.1"
|
||||||
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.47.0" }
|
deno_core = { path = "../core", version = "0.47.1" }
|
||||||
serde_json = "1.0.53"
|
serde_json = "1.0.53"
|
||||||
serde = { version = "1.0.111", features = ["derive"] }
|
serde = { version = "1.0.111", features = ["derive"] }
|
||||||
|
|
|
@ -4,4 +4,4 @@
|
||||||
* the cli's API is stable. In the future when std becomes stable, likely we
|
* the cli's API is stable. In the future when std becomes stable, likely we
|
||||||
* will match versions with cli as we have in the past.
|
* will match versions with cli as we have in the past.
|
||||||
*/
|
*/
|
||||||
export const VERSION = "0.55.0";
|
export const VERSION = "0.56.0";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue