Co-authored-by: dsherret <dsherret@users.noreply.github.com>
This commit is contained in:
denobot 2022-07-01 00:10:41 +05:30 committed by GitHub
parent 81da62d1ae
commit 15f94507bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 1 deletions

View File

@ -1,3 +1,15 @@
### 0.146.0 / 2022.06.30
- BREAKING(collections): rename RBTree/BSTree to RedBlackTree/BinarySearchTree
(#2400)
- feat(dotenv): include missing vars in MissingEnvVarsError (#2390)
- fix(encoding/json): add `null` to JSONValue union (#2384)
- fix(node): export createReadStream() from fs (#2393)
- fix(node): use call() to call prototype methods in inspect() (#2392)
- fix(node/zlib) zlib codes contains undefined values and keys (#2396)
- fix(streams/delimiter): avoid recursion in TextLineStream (#2318)
- fix(testing): break out of Set equality check on match (#2394)
### 0.145.0 / 2022.06.23
- fix(wasi): Fix WASI initialize() (#2372)

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.145.0";
export const VERSION = "0.146.0";