Co-authored-by: dsherret <dsherret@users.noreply.github.com>
This commit is contained in:
denobot 2023-09-19 20:59:26 +02:00 committed by GitHub
parent 9479524eac
commit 00ba7e663a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View File

@ -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)

View File

@ -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";