From a0e44536fbe3411caef3b88cb895ba2aab50f9ab Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Fri, 1 Sep 2023 14:30:53 +0200 Subject: [PATCH] 0.201.0 (#3606) Co-authored-by: littledivy --- Releases.md | 18 ++++++++++++++++++ version.ts | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index c6b5db309..824bd5551 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,21 @@ +### 0.201.0 / 2023.09.01 + +- BREAKING(bytes): deprecate BytesList class (#3589) +- BREAKING(crypto): deprecate crypto.subtle.timingSafeEqual() (#3596) +- BREAKING(dotenv): fix dotenv permissions (#3578) +- BREAKING(encoding): deprecate encoding/binary (#3584) +- BREAKING(fmt): rename stripColor to stripAnsiCode (#3588) +- BREAKING(permissions): deprecate permissions module (#3567) +- BREAKING(semver): remove deprecated APIs (#3591) +- BREAKING(signal): deprecate signal module (#3568) +- BREAKING(streams): remove readable_stream_from_iterable (#3579) +- BREAKING(yaml): change binary handling (#3586) +- feat(assert): add inequality asserts (#3496) +- feat(std): add `std/url` module. (#3527) +- fix(assert): properly quote strings in assertIsError (#3577) +- fix(fmt): make printf respect NO_COLOR (#3595) +- fix(log): rotating file handler sync setup and destroy (#3543) + ### 0.200.0 / 2023.08.24 - doc: add complete docs for all dotenv functionality (#3560) diff --git a/version.ts b/version.ts index 1d71c11fc..38338c8f6 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.200.0"; +export const VERSION = "0.201.0";