From 75646175756f5c6809a855d6011863879c62462d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 2 Mar 2021 14:09:46 -0500 Subject: [PATCH] 0.89.0 --- Releases.md | 17 +++++++++++++++++ version.ts | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 43a291d34..b1af84185 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,20 @@ +### 0.89.0 / 2021.03.02 + +- BREAKING(io/streams): Strengthen iterator to readable stream conversion (#735) +- build: collect and upload code coverage (#770) +- feat(node): add constants module (#747) +- feat(node): add crypto.createHash (#757) +- feat(node): add process.hrtime function (#751) +- feat(node): add truncate and truncateSync (#765) +- fix(node): export promisify & callbackify (#748) +- fix(node): fix export items of events (#758) +- fix(node): ignore shebang (#746) +- fix(node): native module needs to be extensible (#745) +- fix(node/process): make process.argv an array (#749) +- fix: fix type errors in canary test (#762) +- refactor: fix codes to pass `no-unused-vars` lint (#764) +- test(path): update test cases for canary (#775) + ### 0.88.0 / 2021.02.19 - BREAKING(encoding): remove module utf8.ts (#728) diff --git a/version.ts b/version.ts index 9d3d614ef..54aad00d2 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.88.0"; +export const VERSION = "0.89.0";