This commit is contained in:
Bartek Iwańczuk 2020-08-29 15:53:13 +02:00 committed by GitHub
parent 16513d8e62
commit ac705b7936
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 42 additions and 11 deletions

6
Cargo.lock generated
View File

@ -332,7 +332,7 @@ dependencies = [
[[package]]
name = "deno"
version = "1.3.1"
version = "1.3.2"
dependencies = [
"atty",
"base64 0.12.3",
@ -391,7 +391,7 @@ dependencies = [
[[package]]
name = "deno_core"
version = "0.54.0"
version = "0.55.0"
dependencies = [
"downcast-rs",
"futures",
@ -440,7 +440,7 @@ dependencies = [
[[package]]
name = "deno_web"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"deno_core",
"futures",

View File

@ -6,6 +6,37 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
### 1.3.2 / 2020.08.29
- fix(cli): revert "never type check deno info #6978" (#7199)
- fix(console): handle escape sequences when logging objects (#7171)
- fix(doc): stack overflow for .d.ts files (#7167)
- fix(install): Strip "@..." suffixes from inferred names (#7223)
- fix(lint): use recommended rules set (#7222)
- fix(url): Add missing part assignment (#7239)
- fix(url): Don't encode "'" in non-special query strings (#7152)
- fix(web): throw TypeError on invalid input types in TextDecoder.decode()
(#7179)
- build: Move benchmarks to Rust (#7134)
- upgrade: swc, dprint, deno_lint, deno_doc (#7162, #7194)
- upgrade: rusty_v8 0.9.1 / V8 8.6.334 (#7243)
- upgrade: TypeScript 4.0 (#6514)
Changes in std version 0.67.0:
- BREAKING(std/wasi): rename Module to Context (#7110)
- BREAKING(std/wasi): use record for exports (#7109)
- feat(std/fmt): add bright color variations (#7241)
- feat(std/node): add URL export (#7132)
- feat(std/testing): add assertNotMatch (#6775)
- fix(std/encoding/toml): Comment after arrays causing incorrect output (#7224)
- fix(std/node): "events" and "util" modules (#7170)
- fix(std/testing): invalid dates assertion equality (#7230)
- fix(std/wasi): always capture syscall exceptions (#7116)
- fix(std/wasi): ignore lint errors (#7197)
- fix(std/wasi): invalid number to bigint conversion in fd_tell (#7215)
- fix(std/wasi): return flags from fd_fdstat_get (#7112)
### 1.3.1 / 2020.08.21
- fix: Allow isolated "%"s when parsing file URLs (#7108)

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "1.3.1"
version = "1.3.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
@ -20,15 +20,15 @@ harness = false
path = "./bench/main.rs"
[build-dependencies]
deno_core = { path = "../core", version = "0.54.0" }
deno_web = { path = "../op_crates/web", version = "0.4.0" }
deno_core = { path = "../core", version = "0.55.0" }
deno_web = { path = "../op_crates/web", version = "0.5.0" }
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
deno_core = { path = "../core", version = "0.54.0" }
deno_core = { path = "../core", version = "0.55.0" }
deno_doc = { version = "0.1.2" }
deno_lint = { version = "0.1.25", features = ["json"] }

View File

@ -1,7 +1,7 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.54.0"
version = "0.55.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_web"
version = "0.4.0"
version = "0.5.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.54.0", path = "../../core" }
deno_core = { version = "0.55.0", path = "../../core" }
[dev-dependencies]
futures = "0.3.5"

View File

@ -4,4 +4,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.66.0";
export const VERSION = "0.67.0";