From f0daf127bdaa1b0cd5f8eab80b176ecf4977cf7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 10 Aug 2021 11:32:14 +0200 Subject: [PATCH] 0.104.0 --- Releases.md | 21 +++++++++++++++++++++ version.ts | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index a81ecf6b9..f1caa2bd7 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,24 @@ +### 0.104.0 / 2021.08.10 + +- feat: Add `collections` module (#993, #1075, #1103, #1062, #1062, #1109, + #1108, #1071, #1069, #1104, #1097, #1110, #1116) +- feat(crypto): add std/crypto wrapping and extending runtime WebCrypto (#1025) +- feat(http/file_server): return code 304 based on If-Modified-Since Header + (#1078) +- feat(node): add remaining Node.js builtin aliases (#1085) +- feat(node): add shim for perf_hooks (#1088) +- feat(node): assert/strict alias (#1084) +- feat(node): fs/promises implementation (#1083) +- feat(testing): add `assertRejects`, deprecate `assertThrowsAsync` (#1101) +- fix(async): make it so exception of `deadline` can be caught (#1105) +- fix(http/file_server): fix flaky 'file_server sets Date header correctly' test + case (#1095) +- fix(node): assert/strict, fs/promises, perf_hooks modules could not be + required (#1107) +- fix(node/events): optimize listener management (#1113) +- fix(testing): change `assertThrows` and `assertThrowsAsync` return type to + `void` and `Promise` (#1052) + ### 0.103.0 / 2021.07.26 - feat(async): add status to deferred promises (#1047) diff --git a/version.ts b/version.ts index 7a70a2dde..2427bda5a 100644 --- a/version.ts +++ b/version.ts @@ -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.103.0"; +export const VERSION = "0.104.0";