Co-authored-by: littledivy <littledivy@users.noreply.github.com>
This commit is contained in:
denobot 2023-09-27 00:03:35 -04:00 committed by GitHub
parent c5515cdde3
commit 9ff45481ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,16 @@
### 0.203.0 / 2023.09.27
- BREAKING(encoding): deprecate encode/decode, add encodeFoo/decodeFoo (#3660)
- BREAKING(encoding): deprecate old encode/decode in hex.ts (#3673)
- BREAKING(front_matter): deprecate default exports (#3653)
- BREAKING(io): deprecate io top level module (#3556)
- fix(collections): accept readonly arrays in aggregateGroups, reduceGroups, zip
(#3662)
- fix(datetime): correctly format midnight in 12-hour time (#3667)
- fix(datetime): fix dayOfYear when the timezone has DST (#3668)
- fix(encoding): add validation of the input types (#3666)
- fix(semver): add a necessary grouping, fix prerelease parsing (#3674)
### 0.202.0 / 2023.09.19
- BREAKING(collections): move RedBlackTree, BinarySearchTree, and BinaryHeap to

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.202.0";
export const VERSION = "0.203.0";