This commit is contained in:
Ryan Dahl 2019-09-13 12:59:47 -04:00
parent aa7a0f4bd8
commit 7e3296dad9
6 changed files with 47 additions and 14 deletions

20
Cargo.lock generated
View File

@ -253,7 +253,7 @@ dependencies = [
[[package]]
name = "deno"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"futures 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
@ -266,14 +266,14 @@ dependencies = [
[[package]]
name = "deno_cli"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"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)",
"clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)",
"deno 0.17.0",
"deno_cli_snapshots 0.17.0",
"deno_typescript 0.17.0",
"deno 0.18.0",
"deno_cli_snapshots 0.18.0",
"deno_typescript 0.18.0",
"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)",
"fwdansi 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -312,17 +312,17 @@ dependencies = [
[[package]]
name = "deno_cli_snapshots"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"deno 0.17.0",
"deno_typescript 0.17.0",
"deno 0.18.0",
"deno_typescript 0.18.0",
]
[[package]]
name = "deno_typescript"
version = "0.17.0"
version = "0.18.0"
dependencies = [
"deno 0.17.0",
"deno 0.18.0",
"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)",
]

View File

@ -6,6 +6,39 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
### v0.18.0 / 2019.09.13
In deno:
- build: remove tools/build.py; cargo build is the build frontend now (#2865,
#2874, #2876)
- feat: Make integration tests rust unit tests (#2884)
- feat: Set user agent for http client (#2916)
- feat: add bindings to run microtasks from Isolate (#2793)
- fix(fetch): implement bodyUsed (#2877)
- fix(url): basing in constructor (#2867, #2921)
- fix(xeval): incorrect chunk matching behavior (#2857)
- fix: Default 'this' to window in EventTarget (#2918)
- fix: Expose the DOM Body interface globally (#2903)
- fix: Keep all deno_std URLs in sync (#2930)
- fix: make 'deno fmt' faster (#2928)
- fix: panic during block_on (#2905)
- fix: panic during fetch (#2925)
- fix: path normalization in resolve_from_cwd() (#2875)
- fix: remove deprecated Deno.platform (#2895)
- fix: replace bad rid panics with errors (#2870)
- fix: type directives import (#2910)
- upgrade: V8 7.9.8 (#2907)
- upgrade: rust crates (#2937)
In deno_std:
- feat: Add xeval (denoland/deno_std#581)
- fix(flags): Parse builtin properties (denoland/deno_std#579)
- fix(uuid): Make it v4 rfc4122 compliant (denoland/deno_std#580)
- perf: Improve prettier speed by adding d.ts files (denoland/deno_std#591)
- upgrade: prettier to 1.18.2 (denoland/deno_std#592)
### v0.17.0 / 2019.09.04
In deno:

View File

@ -5,7 +5,7 @@ path = "main.rs"
[package]
name = "deno_cli"
version = "0.17.0"
version = "0.18.0"
edition = "2018"
default-run = "deno"

View File

@ -1,6 +1,6 @@
[package]
name = "deno_cli_snapshots"
version = "0.17.0"
version = "0.18.0"
license = "MIT"
authors = ["Ryan Dahl <ry@tinyclouds.org>"]
edition = "2018"

View File

@ -2,7 +2,7 @@
[package]
name = "deno"
version = "0.17.0"
version = "0.18.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]

View File

@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.17.0"
version = "0.18.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/ry/deno_typescript"