From db52e277f69c8f7b73bdfbd3e9e4e6c3d713294b Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Fri, 27 May 2022 07:52:30 +0530 Subject: [PATCH] 0.141.0 Co-authored-by: kitsonk --- Releases.md | 17 +++++++++++++++++ version.ts | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index a7157847e117..29fda9e4542b 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,20 @@ +### 0.141.0 / 2022.05.27 + +- BREAKING(flags): introduce `collect` option (#2247) +- BREAKING(testing): use Object.is() for strict equality (#2244) +- BREAKING(testing/asserts): remove implicit any types from assert signatures. + (#2203) +- feat(http/util): add compareEtag (#2259) +- feat(node/crypto): stub out missing exports (#2263) +- feat(node/dns): `NAPTR`, `NS`, `CAA`, and `SOA` support (#2233) +- feat(streams): toTransformStream (#2227) +- feat(streams/delimiter): support `\r` in `TextLineStream` (#2267) +- feat(streams/merge): earlyZipReadableStreams (#2264) +- feat(testing/asserts): return error from `assertRejects` and `assertThrows` + (#2226) +- fix(async/pooledMap): return ordered result (#2239) +- fix(node/fs): export fs.ReadStream (#2253) + ### 0.140.0 / 2022.05.18 - feat(http): add onListen option to serve (#2218) diff --git a/version.ts b/version.ts index 2ec9f99e5f1e..2f335f2e7882 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.140.0"; +export const VERSION = "0.141.0";