Skip to content

Commit

Permalink
v1.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Oct 3, 2020
1 parent c191ca1 commit ae1ed2d
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

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

### 1.4.4 / 2020.10.03

- fix(cli): Update type definitions to align to TS dom (#7791)
- fix(cli/repl): Fix hot loop in REPL (#7804)
- fix(cli/repl): Enable colors on inspected values (#7798)

### 1.4.3 / 2020.10.02

- feat(unstable): Add module specifier to deno info --json output (#7725)
Expand Down
14 changes: 7 additions & 7 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "1.4.3"
version = "1.4.4"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -20,20 +20,20 @@ harness = false
path = "./bench/main.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.60.0" }
deno_web = { path = "../op_crates/web", version = "0.12.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.4.0" }
deno_core = { path = "../core", version = "0.61.0" }
deno_web = { path = "../op_crates/web", version = "0.13.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.5.0" }

[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"

[dependencies]
deno_core = { path = "../core", version = "0.60.0" }
deno_core = { path = "../core", version = "0.61.0" }
deno_doc = "0.1.10"
deno_lint = { version = "0.2.2", features = ["json"] }
deno_web = { path = "../op_crates/web", version = "0.12.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.4.0" }
deno_web = { path = "../op_crates/web", version = "0.13.0" }
deno_fetch = { path = "../op_crates/fetch", version = "0.5.0" }

atty = "0.2.14"
base64 = "0.12.3"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.60.0"
version = "0.61.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 op_crates/fetch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_fetch"
version = "0.4.0"
version = "0.5.0"
edition = "2018"
description = "provides fetch Web API to deno_core"
authors = ["the Deno authors"]
Expand All @@ -14,6 +14,6 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.60.0", path = "../../core" }
deno_core = { version = "0.61.0", path = "../../core" }
reqwest = { version = "0.10.8", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1.0.116", features = ["derive"] }
4 changes: 2 additions & 2 deletions op_crates/web/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_web"
version = "0.12.0"
version = "0.13.0"
edition = "2018"
description = "Collection of Web APIs"
authors = ["the Deno authors"]
Expand All @@ -14,7 +14,7 @@ repository = "https://github.com/denoland/deno"
path = "lib.rs"

[dependencies]
deno_core = { version = "0.60.0", path = "../../core" }
deno_core = { version = "0.61.0", path = "../../core" }
idna = "0.2.0"
serde = { version = "1.0.116", features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion std/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,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.72.0";
export const VERSION = "0.73.0";

0 comments on commit ae1ed2d

Please sign in to comment.