From 699ba98572f28e6dfb423abe959502ba6a96c551 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Thu, 4 May 2023 16:26:44 +0200 Subject: [PATCH] 0.186.0 (#3358) Co-authored-by: levex --- Releases.md | 12 ++++++++++++ version.ts | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 41fd5c079953..b4a8ed00fd21 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,15 @@ +### 0.186.0 / 2023.05.04 + +- BREAKING(path): deprecate path.sep (#3342) +- feat(async): support `signal` on `deadline()` (#3347) +- feat(async/pool): use browser compatible APIs (#3350) +- feat(http): add HTTP_METHODS, HttpMethod, and isHttpMethod (#3309) +- feat(uuid): add pre-defined namespace UUIDs (#3352) +- fix(http/file_server): fix `Range` header handling (#3354) +- fix(http/server): flaky 'address in use' error (#3333) +- fix(http/server_sent_event): fix Uncaught TypeError if created without + optional EventInit (#3356) + ### 0.185.0 / 2023.04.27 - feat(dotenv): allow reading from `.env` files without granting env access diff --git a/version.ts b/version.ts index 9c8b740f7399..d5ca0bab6199 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.185.0"; +export const VERSION = "0.186.0";