From 5ddf32a1eaeb04ce55d2680e32cac19e4dd8a8ca Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Thu, 21 Dec 2023 09:00:41 -0500 Subject: [PATCH] 0.210.0 (#4009) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: bartlomieju Co-authored-by: Bartek IwaƄczuk --- Releases.md | 20 ++++++++++++++++++++ version.ts | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 995b5fa0b..c85742aa0 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,23 @@ +### 0.210.0 / 2023.12.21 + +- BREAKING(crypto): remove `toHashString()` (#3924) +- BREAKING(encoding): remove deprecated APIs (#3952) +- BREAKING(http): remove deprecated `std/http/method` API (#3951) +- deprecation(encoding): deprecate `base32.byteLength()` (#4000) +- deprecation(semver): comparator min and max properties (#3974) +- deprecation(semver): deprecate `SemVer` argument for `parse()` and + `canParse()` (#3939) +- deprecation(semver): deprecate `rcompare()` (#3958) +- deprecation(semver): rename `isSemVerComparator()` (#3957) +- deprecation(signal): move deprecation forward (#4004) +- feat(cli): command line spinner (#3968) +- feat(collections): improve `mapValues()` typing (#3978) +- feat(log): add support for structured JSON logging (#3960) +- feat(testing): enable the `using` keyword on `FakeTime()` (#3961) +- fix(http): account for period in signed cookie name (#3977) +- fix(path/extname): fix incorrect import (#3970) +- perf(streams): make `toBlob()` 20-30% faster (#3934) + ### 0.209.0 / 2023.12.13 - BREAKIING(fs): remove `EOL` enum, add OS-dependent `EOL` (#3850) diff --git a/version.ts b/version.ts index 63391f6ed..70af57f21 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.209.0"; +export const VERSION = "0.210.0";