This commit is contained in:
Luca Casonato 2020-10-31 15:32:43 +01:00 committed by GitHub
parent 2a36e2f892
commit 03769f11b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 36 additions and 17 deletions

8
Cargo.lock generated
View File

@ -408,7 +408,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.5.0"
version = "1.5.1"
dependencies = [
"atty",
"base64 0.12.3",
@ -466,7 +466,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.65.0"
version = "0.66.0"
dependencies = [
"anyhow",
"futures",
@ -501,7 +501,7 @@ dependencies = [
[[package]]
name = "deno_fetch"
version = "0.8.0"
version = "0.9.0"
dependencies = [
"deno_core",
"reqwest",
@ -526,7 +526,7 @@ dependencies = [
[[package]]
name = "deno_web"
version = "0.16.0"
version = "0.17.0"
dependencies = [
"deno_core",
"futures",

View File

@ -6,6 +6,25 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at:
https://github.com/denoland/deno_install
### 1.5.1 / 2020.10.31
- fix: Accept Windows line breaks in prompt/confirm/alert (#8149)
- fix: Deno.fdata(), Deno.fdatasync() added to stable (#8193)
- fix: Strip "\\?\" prefix when displaying Windows paths (#8135)
- fix: Make hashes of tsconfig deterministic (#8167)
- fix: Module graph handles redirects properly (#8159)
- fix: Restore tripleslash lib refs support (#8157)
- fix: Panic in bundler (#8168)
- fix(repl): Don't hang on unpaired braces (#8151)
- refactor: Don't spin up V8 for `deno cache` (#8186)
- refactor: Create a single watcher for whole process (#8083)
- upgrade: deno_doc, deno_lint, dprint, swc (#8197)
Changes in std version 0.76.0:
- feat(std/node/crypto): Add randomBytes and pbkdf2 (#8191)
- fix(std/wasi): Remove stray console.log call (#8156)
### 1.5.0 / 2020.10.27
- BREAKING: Enable isolatedModules by default (#8050)

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.5.0"
version = "1.5.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@ -20,20 +20,20 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.65.0" }
deno_web = { path = "../op_crates/web", version = "0.16.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.8.0" }
deno_core = { path = "../core", version = "0.66.0" }
deno_web = { path = "../op_crates/web", version = "0.17.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.9.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.65.0" }
deno_core = { path = "../core", version = "0.66.0" }
deno_doc = "0.1.14"
deno_lint = "0.2.7"
deno_web = { path = "../op_crates/web", version = "0.16.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.8.0" }
deno_web = { path = "../op_crates/web", version = "0.17.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.9.0" }
atty = "0.2.14"
base64 = "0.12.3"

View File

@ -1,7 +1,7 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.65.0"
version = "0.66.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]

View File

@ -2,7 +2,7 @@
[package]
name = "deno_fetch"
version = "0.8.0"
version = "0.9.0"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
deno_core = { version = "0.65.0", path = "../../core" }
deno_core = { version = "0.66.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }

View File

@ -2,7 +2,7 @@
[package]
name = "deno_web"
version = "0.16.0"
version = "0.17.0"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"
[dependencies]
deno_core = { version = "0.65.0", path = "../../core" }
deno_core = { version = "0.66.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }

View File

@ -5,4 +5,4 @@
* 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.
*/
export const VERSION = "0.75.0";
export const VERSION = "0.76.0";