diff --git a/Releases.md b/Releases.md index b4330cd30..87f31ea15 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,19 @@ +### 0.206.0 / 2023.11.10 + +- BREAKING(async): deprecate `deferred()` in favor of `Promise.withResolvers()` + (#3758) +- BREAKING(encoding): remove deprecated binary APIs (#3763) +- BREAKING(path): split up glob into multiple files +- add `deno fmt --check` +- feat(testing/mock): enable `spy` to accept a class constructor (#3766) +- feat: `ServerSentEventStream()` (#3751) +- feat: add `std/text` with word-similarity helpers (#3488) +- fix(fmt): format duration rounding error. (#3762) +- fix(msgpack): encode huge objects (#3698) +- fix: broken import +- fix: rework file server tests (#3779) +- perf(streams): add single-character fast path for `DelimiterStream()` (#3739) + ### 0.205.0 / 2023.11.01 - BREAKING(dotenv): remove deprecated `restrictEnvAccessTo` option (#3705) diff --git a/version.ts b/version.ts index 6e8ef73dd..99bfc3dff 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.205.0"; +export const VERSION = "0.206.0";