summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock6
-rw-r--r--Releases.md36
-rw-r--r--cli/Cargo.toml10
-rw-r--r--core/Cargo.toml2
-rw-r--r--deno_typescript/Cargo.toml4
5 files changed, 47 insertions, 11 deletions
diff --git a/Cargo.lock b/Cargo.lock
index b658a2b6a..552934a8d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -416,7 +416,7 @@ dependencies = [
[[package]]
name = "deno"
-version = "0.36.0"
+version = "0.37.0"
dependencies = [
"atty",
"base64 0.11.0",
@@ -465,7 +465,7 @@ dependencies = [
[[package]]
name = "deno_core"
-version = "0.36.0"
+version = "0.37.0"
dependencies = [
"derive_deref",
"downcast-rs",
@@ -481,7 +481,7 @@ dependencies = [
[[package]]
name = "deno_typescript"
-version = "0.36.0"
+version = "0.37.0"
dependencies = [
"deno_core",
"serde",
diff --git a/Releases.md b/Releases.md
index 301ae8628..9141eae0a 100644
--- a/Releases.md
+++ b/Releases.md
@@ -6,6 +6,42 @@ https://github.com/denoland/deno/releases
We also have one-line install commands at
https://github.com/denoland/deno_install
+### v0.37.0 / 2020.03.23
+
+- BREAKING CHANGE: FileInfo.len renamed to FileName.size (#4338)
+- BREAKING CHANGE: Rename Deno.run's args to cmd (#4444)
+- feat(ci): Releases should all use zip and LLVM target triples (#4460)
+- feat(console): Symbol.toStringTag and display Object symbol entries (#4388)
+- feat(std/node): Add chmod Node polyfill (#4358)
+- feat(std/node): Add node querystring polyfill (#4370)
+- feat(std/node): Node polyfill for fs.chown and fs.close (#4377)
+- feat(std/permissions): Add helper functions for permissions to std (#4258)
+- feat(std/types): Provide types for React and ReactDOM (#4376)
+- feat(test): Add option to skip tests (#4351)
+- feat(test): Add support for jsx/tsx for deno test (#4369)
+- feat: Add mode option to open/create (#4289)
+- feat: Deno.test() sanitizes ops and resources (#4399)
+- feat: Fetch should accept a FormData body (#4363)
+- feat: First pass at "deno upgrade" (#4328)
+- feat: Prvode way to build Deno without building V8 from source (#4412)
+- feat: Remove `Object.prototype.__proto__` (#4341)
+- fix(std/http): Close open connections on server close (#3679)
+- fix(std/http): Properly await ops in a server test (#4436)
+- fix(std/http): Remove bad error handling (#4435)
+- fix(std/node): Node polyfill fsAppend rework (#4322)
+- fix(std/node): Stack traces for modules imported via require (#4035)
+- fix: Importing JSON doesn't work in bundles (#4404)
+- fix: Simplify timer with macrotask callback (#4385)
+- fix: Test runner ConnectionReset bug (#4424)
+- fix: chmod should throw on Windows (#4446)
+- fix: fetch closes unused body (#4393)
+- perf: Optimize TextEncoder and TextDecoder (#4430, #4349)
+- refactor: Improve test runner (#4336, #4352, #4356, #4371)
+- refactor: Remove std/testing/runner.ts, use deno test (#4397, #4392)
+- upgrade: Rust 1.42.0 (#4331)
+- upgrade: Rust crates (#4412)
+- upgrade: to rusty_v8 0.3.5 / v8 8.2.308 (#4364)
+
### v0.36.0 / 2020.03.11
- BREAKING CHANGE: Remove Deno.errors.Other (#4249)
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index c6b38de8b..fd10601c8 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno"
-version = "0.36.0"
+version = "0.37.0"
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.36.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.36.0" }
+deno_core = { path = "../core", version = "0.37.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.37.0" }
[dependencies]
-deno_core = { path = "../core", version = "0.36.0" }
-deno_typescript = { path = "../deno_typescript", version = "0.36.0" }
+deno_core = { path = "../core", version = "0.37.0" }
+deno_typescript = { path = "../deno_typescript", version = "0.37.0" }
atty = "0.2.14"
base64 = "0.11.0"
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 48b41538b..e283a4b80 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -2,7 +2,7 @@
[package]
name = "deno_core"
-version = "0.36.0"
+version = "0.37.0"
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 073bf185e..c7d9e3b03 100644
--- a/deno_typescript/Cargo.toml
+++ b/deno_typescript/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deno_typescript"
-version = "0.36.0"
+version = "0.37.0"
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.36.0" }
+deno_core = { path = "../core", version = "0.37.0" }
serde_json = "1.0.48"
serde = { version = "1.0.104", features = ["derive"] }