diff --git a/Releases.md b/Releases.md index 5f0c9ff72..63899d374 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,11 @@ +### 0.152.0 / 2022.08.11 + +- feat(crypto): add subtle.timingSafeEqual() (#2503) +- feat(testing): allow for stubbing non existent instance methods (#2487) +- node: add stub for child_process.execSync (#2513) +- node: remove import to global.ts from module_esm.ts (#2501) +- remove 'unhandledRejection' from list of unsupported events (#2500) + ### 0.151.0 / 2022.08.04 - fix(node): fs.existsSync never throws (#2495) diff --git a/version.ts b/version.ts index db3a1246f..0eccd655e 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.151.0"; +export const VERSION = "0.152.0";