Skip to content

Commit

Permalink
v0.37.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Mar 23, 2020
1 parent 449dbe5 commit b924e5a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

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

### v0.37.1 / 2020.03.23

- fix: Statically link the C runtime library on Windows (#4469)

### v0.37.0 / 2020.03.23

- BREAKING CHANGE: FileInfo.len renamed to FileName.size (#4338)
Expand Down
10 changes: 5 additions & 5 deletions cli/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno"
version = "0.37.0"
version = "0.37.1"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
Expand All @@ -19,12 +19,12 @@ name = "deno"
path = "main.rs"

[build-dependencies]
deno_core = { path = "../core", version = "0.37.0" }
deno_typescript = { path = "../deno_typescript", version = "0.37.0" }
deno_core = { path = "../core", version = "0.37.1" }
deno_typescript = { path = "../deno_typescript", version = "0.37.1" }

[dependencies]
deno_core = { path = "../core", version = "0.37.0" }
deno_typescript = { path = "../deno_typescript", version = "0.37.0" }
deno_core = { path = "../core", version = "0.37.1" }
deno_typescript = { path = "../deno_typescript", version = "0.37.1" }

atty = "0.2.14"
base64 = "0.11.0"
Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Expand Up @@ -2,7 +2,7 @@

[package]
name = "deno_core"
version = "0.37.0"
version = "0.37.1"
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
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
version = "0.37.0"
version = "0.37.1"
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_core = { path = "../core", version = "0.37.0" }
deno_core = { path = "../core", version = "0.37.1" }
serde_json = "1.0.48"
serde = { version = "1.0.104", features = ["derive"] }

0 comments on commit b924e5a

Please sign in to comment.