From b924e5ab7e69eab4d3b6d9a863a8fc2974f33b5d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 23 Mar 2020 17:14:34 -0400 Subject: [PATCH] v0.37.1 --- Cargo.lock | 6 +++--- Releases.md | 4 ++++ cli/Cargo.toml | 10 +++++----- core/Cargo.toml | 2 +- deno_typescript/Cargo.toml | 4 ++-- 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 552934a8db..c42b86cf6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,7 +416,7 @@ dependencies = [ [[package]] name = "deno" -version = "0.37.0" +version = "0.37.1" dependencies = [ "atty", "base64 0.11.0", @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "deno_core" -version = "0.37.0" +version = "0.37.1" dependencies = [ "derive_deref", "downcast-rs", @@ -481,7 +481,7 @@ dependencies = [ [[package]] name = "deno_typescript" -version = "0.37.0" +version = "0.37.1" dependencies = [ "deno_core", "serde", diff --git a/Releases.md b/Releases.md index 9141eae0ac..9feea37cde 100644 --- a/Releases.md +++ b/Releases.md @@ -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) diff --git a/cli/Cargo.toml b/cli/Cargo.toml index fd10601c83..dac1617316 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "deno" -version = "0.37.0" +version = "0.37.1" license = "MIT" authors = ["the Deno authors"] edition = "2018" @@ -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" diff --git a/core/Cargo.toml b/core/Cargo.toml index e283a4b80e..07a8d70a0b 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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"] diff --git a/deno_typescript/Cargo.toml b/deno_typescript/Cargo.toml index c7d9e3b039..283da62818 100644 --- a/deno_typescript/Cargo.toml +++ b/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" @@ -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"] }