diff --git a/Releases.md b/Releases.md index 2be815d46..b1f684c65 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,11 @@ +### 0.109.0 / 2021.09.28 + +- feat(std/node/stream): add partial support for `stream/web` (#1297) +- fix(node/_tools): use denoflate to decompress Node test folder (#1299) +- fix(node/events): make `EventEmitter.call` compatible with es5 (#1315) +- fix(std/node/module): treat .mjs files as ESM (#1301) +- perf(crypto): reduce one mircotask (#1307) + ### 0.108.0 / 2021.09.21 - fix: use `strict-ts44.tsconfig.json` on release tests (#1278) diff --git a/version.ts b/version.ts index 95beaea87..292274eb0 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.108.0"; +export const VERSION = "0.109.0";