diff --git a/Releases.md b/Releases.md index 0c87c4efaedb..94f38b3b5934 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,14 @@ +### 0.162.0 / 2022.11.03 + +- feat(encoding/front_matter): add support for different formats of front matter + (#2801) +- feat(streams): add ByteSliceStream (#2795) +- feat(tools): add import path check in docs (#2820) +- fix(dotenv): Empty string crashing parsing (#2819) +- fix(flags): set boolean aliases to false by default (#2824) +- fix(node): `node:setup` task honours `-y` flag (#2825) +- fix(node/fs): add support for numeric flags in `fs.open()` (#2828) + ### 0.161.0 / 2022.10.26 - BREAKING: remove deprecated `std/hash` module (#2786) diff --git a/version.ts b/version.ts index 3c4fc0db7a20..e29c70f6b9fb 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.161.0"; +export const VERSION = "0.162.0";