diff --git a/Releases.md b/Releases.md index 3483730ec..0c87c4efa 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,15 @@ +### 0.161.0 / 2022.10.26 + +- BREAKING: remove deprecated `std/hash` module (#2786) +- feat(crypto): `createHash` utility (#2805) +- feat(crypto): `toHashString` utility (#2767) +- feat(node): add support of .node module (#2804) +- feat(node): list remaining Node tests in documentation (#2787) +- fix(fs/expandGlob): globstar false does not take effect (#2571) (#2779) +- fix(node/fs): enable to check error thrown on invalid values of bufferSize + (#2782) +- fix(node/net): modify close event timing (#2793) + ### 0.160.0 / 2022.10.17 - feat(crypto): export algorithm types (#2759) diff --git a/version.ts b/version.ts index 3a8fd2141..3c4fc0db7 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.160.0"; +export const VERSION = "0.161.0";