Skip to content

Commit

Permalink
v0.23.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Nov 5, 2019
1 parent 1726194 commit a611788
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

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

### v0.23.0 / 2019.11.04

- feat: Add serveTLS and listenAndServeTLS (#3257)
- feat: Lockfile support (#3231)
- feat: Adds custom inspect method for URL (#3241)
- fix: Support for deep `Map` equality with `asserts#equal` (#3236, #3258)
- fix: Make EOF unique symbol (#3244)
- fix: Prevent customInspect error from crashing console (#3226)

### v0.22.0 / 2019.10.28

- feat: Deno.listenTLS (#3152)
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.22.0"
version = "0.23.0"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -19,11 +19,11 @@ name = "deno"
path = "main.rs"

[build-dependencies]
deno_typescript = { path = "../deno_typescript", version = "0.22.0" }
deno_typescript = { path = "../deno_typescript", version = "0.23.0" }

[dependencies]
deno = { path = "../core", version = "0.22.0" }
deno_typescript = { path = "../deno_typescript", version = "0.22.0" }
deno = { path = "../core", version = "0.23.0" }
deno_typescript = { path = "../deno_typescript", version = "0.23.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.22.0"
version = "0.23.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.22.0"
version = "0.23.0"
license = "MIT"
description = "To compile TypeScript to a snapshot during build.rs"
repository = "https://github.com/denoland/deno"
Expand All @@ -19,6 +19,6 @@ exclude = [
path = "lib.rs"

[dependencies]
deno = { path = "../core", version = "0.22.0" }
deno = { path = "../core", version = "0.23.0" }
serde_json = "1.0.40"
serde = { version = "1.0.100", features = ["derive"] }

0 comments on commit a611788

Please sign in to comment.