From 97dc90373893b83713b05b1891a109ad48f8abc2 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 24 Feb 2022 11:37:50 -0500 Subject: [PATCH] 0.127.0 --- Releases.md | 10 ++++++++++ version.ts | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index c96f7e6db..1359f015c 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,13 @@ +### 0.127.0 / 2022.02.24 + +- feat(async): add `abortable` to async module. (#1939) +- feat(dotenv): add dotenv library (#1877) +- feat(http): expose serveDir function from file_server.ts (#1944) +- feat(node): add fs.realpath.native (#1951) +- feat(node/tls): basic support of tls.createServer (#1948) +- feat(testing): add `assertAlmostEquals` (#1906) +- fix(node): don't use globalThis.setTimeout types in node/timers (#1934) + ### 0.126.0 / 2022.02.17 - feat(node): add tls.connect (#1923) diff --git a/version.ts b/version.ts index bf9ecc140..17448a00c 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.126.0"; +export const VERSION = "0.127.0";