diff --git a/Releases.md b/Releases.md index d070593c1..54f537a50 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,22 @@ +### 0.111.0 / 2021.10.12 + +- BREAKING(fs): deprecate exists and existsSync (#1364) +- BREAKING(hash): deprecate std/hash (#1350) +- BREAKING(io): reorganize modules (#813) +- feat: streams utilities (#1141) +- feat(node): Add dns and net modules (#1375) +- feat(node): first iteration of http (#1383) +- feat(node): update built-in modules in node/module.ts (#1378) +- feat(node/crypto): add randomFillSync an randomFill (#1340) +- feat(node/crypto): add randomInt (#1356) +- feat(node/http): Export STATUS_CODES and METHODS (#1357) +- feat(node/url): add support for UNC path (#1365) +- fix(async/delay): reject if signal is already aborted (#1363) +- fix(encoding/base64url): allow passing strings to `encode` (#1361) +- fix(node): typo from #1380 (#1381) +- fix(node/url): improve compatibility of fileURLToPath (#1342) +- perf(bytes): switch equals to simd for large byte arrays (#1349) + ### 0.110.0 / 2021.10.04 - feat(node): add missing modules (#1337) diff --git a/version.ts b/version.ts index 5a24e9fc9..2ef5520e7 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.110.0"; +export const VERSION = "0.111.0";