diff --git a/Releases.md b/Releases.md index 7d469dcd3..e74e5dec2 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,15 @@ +### 0.124.0 / 2022.02.03 + +- feat(node): add punycode module (#1857) +- feat(node): add url.resolve (#1851) +- feat(node/child_process): add support for AbortSignal in ChildProcess (#1864) +- feat(node/fs): add fs.createWriteStream (#1859) +- fix(node/fs): fix fs.access when the user owns the file (#1869) +- fix(node/fs): fix fs.copyFile (support 4-arg call) (#1872) +- fix(node/http): fix http.request (#1856) +- fix(node/net): mock response.socket object (#1858) +- fix: bypass TS errors for missing --unstable (#1819) + ### 0.123.0 / 2022.01.27 - feat(node): add os.networkInterfaces (#1846) diff --git a/version.ts b/version.ts index d0bdf29b2..cfd96ee9a 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.123.0"; +export const VERSION = "0.124.0";