diff --git a/Releases.md b/Releases.md index cd87a0f6d..fce118bbd 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,14 @@ +### 0.214.0 / 2024.02.01 + +- BREAKING(io): remove `types.d.ts` (#4237) +- BREAKING(log): remove string formatter (#4239) +- BREAKING(log): single-export handler files (#4236) +- BREAKING(streams): remove `readAll()`, `writeAll()` and `copy()` (#4238) +- feat(tools,log,http,semver): check mod exports, export items consistently from + mod.ts (#4229) +- fix(expect): add Error object equal check. (#4248) +- fix(expect): align `toEqual` to jest (#4246) + ### 0.213.0 / 2024.01.25 - BREAKING(http): remove `CookieMap` (#4179) diff --git a/version.ts b/version.ts index cdd941c76..38b626aff 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.213.0"; +export const VERSION = "0.214.0";