diff --git a/Releases.md b/Releases.md index c32551644899..20cf1064abe5 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,15 @@ +### 0.168.0 / 2022.12.14 + +- BREAKING(archive): move to single-export files (#2958) +- BREAKING(dotenv): rename config to load (#2616) +- BREAKING(io): single-export files (#2975) +- fix(encoding): base58 decoding (#2982) +- fix(node): fix nextTick shim in deploy (#2980) +- fix(node): ignore NotSupported errors coming from `Deno.chmod` (#2996) +- fix(node/http): do not buffer first chunk (#2989) +- perf(encoding/yaml) Don't allocate buffers unnecessarily (#2967) +- perf(node/buffer): improve utf8 decoding performance (#2986) + ### 0.167.0 / 2022.12.01 - Reorder steps to view documentation (#2948) diff --git a/version.ts b/version.ts index 5856aa490098..80a154ee46ea 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.167.0"; +export const VERSION = "0.168.0";