Skip to content

Commit 3892cf5

Browse files
committed
v0.19.0
1 parent 3d2d0ee commit 3892cf5

File tree

6 files changed

+47
-21
lines changed

6 files changed

+47
-21
lines changed

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Releases.md

+26
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
66
We also have one-line install commands at
77
https://github.com/denoland/deno_install
88

9+
### v0.19.0 / 2019.09.24
10+
11+
In deno:
12+
13+
- feat: Add Deno.dialTLS()
14+
- feat: Make deno_cli installable via crates.io (#2946)
15+
- feat: Remove test.py, use cargo test as test frontend (#2967)
16+
- feat: dial/listen API change (#3000)
17+
- feat: parallelize downloads from TS compiler (#2949)
18+
- fix: Make `window` compatible with ts 3.6 (#2984)
19+
- fix: Remove some non-standard web API constructors (#2970)
20+
- fix: debug logging in runtime/compiler (#2953)
21+
- fix: flag parsing of config file (#2996)
22+
- fix: reschedule global timer if it fires earlier than expected (#2989)
23+
- fix: type directive parsing (#2954)
24+
- upgrade: V8 to 7.9.110 for top-level-await (#3015)
25+
- upgrade: to TypeScript 3.6.3 (#2969)
26+
27+
In deno_std:
28+
29+
- feat: Implement BufReader.readString (denoland/deno_std#607)
30+
- fix: TOML's key encoding (denoland/deno_std#612)
31+
- fix: remove //testing/main.ts (denoland/deno_std#605)
32+
- fix: types in example_client for ws module (denoland/deno_std#609)
33+
- upgrade: mime-db to commit c50e0d1 (denoland/deno_std#608)
34+
935
### v0.18.0 / 2019.09.13
1036

1137
In deno:

cli/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno_cli"
5-
version = "0.18.4"
5+
version = "0.19.0"
66
license = "MIT"
77
authors = ["the Deno authors"]
88
edition = "2018"
@@ -19,9 +19,9 @@ name = "deno"
1919
path = "main.rs"
2020

2121
[dependencies]
22-
deno = { path = "../core", version = "0.18.0" }
23-
deno_cli_snapshots = { path = "../js", version = "0.18.3" }
24-
deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
22+
deno = { path = "../core", version = "0.19.0" }
23+
deno_cli_snapshots = { path = "../js", version = "0.19.0" }
24+
deno_typescript = { path = "../deno_typescript", version = "0.19.0" }
2525

2626
ansi_term = "0.12.1"
2727
atty = "0.2.13"

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "deno"
5-
version = "0.18.0"
5+
version = "0.19.0"
66
edition = "2018"
77
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
88
authors = ["the Deno authors"]

deno_typescript/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deno_typescript"
3-
version = "0.18.3"
3+
version = "0.19.0"
44
license = "MIT"
55
description = "To compile TypeScript to a snapshot during build.rs"
66
repository = "https://github.com/ry/deno_typescript"
@@ -19,6 +19,6 @@ exclude = [
1919
path = "lib.rs"
2020

2121
[dependencies]
22-
deno = { path = "../core", version = "0.18.0" }
22+
deno = { path = "../core", version = "0.19.0" }
2323
serde_json = "1.0.40"
2424
serde = { version = "1.0.100", features = ["derive"] }

js/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deno_cli_snapshots"
3-
version = "0.18.3"
3+
version = "0.19.0"
44
license = "MIT"
55
authors = ["the Deno authors"]
66
edition = "2018"
@@ -15,11 +15,11 @@ exclude = [
1515
path = "lib.rs"
1616

1717
[dependencies]
18-
deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
18+
deno_typescript = { path = "../deno_typescript", version = "0.19.0" }
1919

2020
[dev-dependencies]
21-
deno = { path = "../core", version = "0.18.0" }
21+
deno = { path = "../core", version = "0.19.0" }
2222

2323
[build-dependencies]
24-
deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
24+
deno_typescript = { path = "../deno_typescript", version = "0.19.0" }
2525

0 commit comments

Comments
 (0)