Skip to content

Commit

Permalink
v0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 25, 2019
1 parent 3d2d0ee commit 3892cf5
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 21 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install

### v0.19.0 / 2019.09.24

In deno:

- feat: Add Deno.dialTLS()
- feat: Make deno_cli installable via crates.io (#2946)
- feat: Remove test.py, use cargo test as test frontend (#2967)
- feat: dial/listen API change (#3000)
- feat: parallelize downloads from TS compiler (#2949)
- fix: Make `window` compatible with ts 3.6 (#2984)
- fix: Remove some non-standard web API constructors (#2970)
- fix: debug logging in runtime/compiler (#2953)
- fix: flag parsing of config file (#2996)
- fix: reschedule global timer if it fires earlier than expected (#2989)
- fix: type directive parsing (#2954)
- upgrade: V8 to 7.9.110 for top-level-await (#3015)
- upgrade: to TypeScript 3.6.3 (#2969)

In deno_std:

- feat: Implement BufReader.readString (denoland/deno_std#607)
- fix: TOML's key encoding (denoland/deno_std#612)
- fix: remove //testing/main.ts (denoland/deno_std#605)
- fix: types in example_client for ws module (denoland/deno_std#609)
- upgrade: mime-db to commit c50e0d1 (denoland/deno_std#608)

### v0.18.0 / 2019.09.13

In deno:
Expand Down
8 changes: 4 additions & 4 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_cli"
version = "0.18.4"
version = "0.19.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -19,9 +19,9 @@ name = "deno"
path = "main.rs"

[dependencies]
deno = { path = "../core", version = "0.18.0" }
deno_cli_snapshots = { path = "../js", version = "0.18.3" }
deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
deno = { path = "../core", version = "0.19.0" }
deno_cli_snapshots = { path = "../js", version = "0.19.0" }
deno_typescript = { path = "../deno_typescript", version = "0.19.0" }

ansi_term = "0.12.1"
atty = "0.2.13"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "0.18.0"
version = "0.19.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
Expand Down
4 changes: 2 additions & 2 deletions deno_typescript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.18.3"
version = "0.19.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/ry/deno_typescript"
Expand All @@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"

[dependencies]
deno = { path = "../core", version = "0.18.0" }
deno = { path = "../core", version = "0.19.0" }
serde_json = "1.0.40"
serde = { version = "1.0.100", features = ["derive"] }
8 changes: 4 additions & 4 deletions js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "deno_cli_snapshots"
version = "0.18.3"
version = "0.19.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -15,11 +15,11 @@ exclude = [
path = "lib.rs"

[dependencies]
deno_typescript = { path = "../deno_typescript", version = "0.18.3" }
deno_typescript = { path = "../deno_typescript", version = "0.19.0" }

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

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

0 comments on commit 3892cf5

Please sign in to comment.