diff --git a/Releases.md b/Releases.md index f7e6308d6bbd..442b1a6939ac 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,20 @@ +### 0.96.0 / 2021.05.11 + +- feat(fs/walk): show path in walk error (#875) +- feat(http): allow custom response code (#855) +- feat(io): add readRange, readRangeSync (#884) +- feat(mime/multipart): add options to readForm (#895) +- feat(node): add console module (#892) +- feat(node/assert): add rejects and doesNotReject (#894) +- feat(std/node): add implementation of os.homedir() (#873) +- fix(http/file_server): keep url and name consistent (#908) +- fix(io): Improve readDelims() performance (#867) +- fix(io/streams): don't use a byte ReadableStream (#891) +- fix(node/assert): enable test-assert-fail.js and align assert.fail to it + (#874) +- fix(node/child_process): Try to fix flaky tests (#876) +- fix(node/stream): make `Stream` the default export (#901) + ### 0.95.0 / 2021.04.23 - feat(node): add basic support for child_process.spawn (#785) diff --git a/version.ts b/version.ts index 9dfe3f1d4eb3..d3aa441e32fe 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.95.0"; +export const VERSION = "0.96.0";