From 00ba7e663a2831529c8c67b0c7010431233bb9ac Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Tue, 19 Sep 2023 20:59:26 +0200 Subject: [PATCH] 0.202.0 (#3657) Co-authored-by: dsherret --- Releases.md | 20 ++++++++++++++++++++ version.ts | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 824bd5551e15..c550d32e0cc2 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,23 @@ +### 0.202.0 / 2023.09.19 + +- BREAKING(collections): move RedBlackTree, BinarySearchTree, and BinaryHeap to + 'unstable' subdir (#3628) +- BREAKING(crypto): clean up module (#3630) +- BREAKING(csv): deprecate error message exports (#3602) +- BREAKING(datetime): deprecate to_imf.ts (#3633) +- BREAKING(media_types): deprecate typeByExtension (#3622) +- BREAKING(streams): deprecate APIs based on legacy Reader/Writer interfaces + (#3640) +- feat(encoding): add encodeHex, decodeHex (#3642) +- feat(streams): to ArrayBuffer/Blob/Json/Text (#3631) +- feat(ulid): port /x/ulid module (#3582) +- fix(streams): DelimiterStream regression (#3611) +- fix(stripAnsiCode): escape erase character (#3608) +- fix(testing/snapshot): distinguish between singular and plural forms (#3625) +- fix(testing/time): fix FakeTime.next to return false if all timers are cleared + (#3638) +- fix(url): fixes for url functions and new tests. (#3607) + ### 0.201.0 / 2023.09.01 - BREAKING(bytes): deprecate BytesList class (#3589) diff --git a/version.ts b/version.ts index 38338c8f6993..0876154a0f44 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.201.0"; +export const VERSION = "0.202.0";