From 40d78a1fbf655023e7c7e70b8be7571a38e46c52 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Wed, 12 Apr 2023 16:17:59 +0200 Subject: [PATCH] 0.183.0 (#3313) Co-authored-by: levex --- Releases.md | 14 ++++++++++++++ version.ts | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index 28c4865be..eeb91a523 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,17 @@ +### 0.183.0 / 2023.04.12 + +- BREAKING(csv): rename `CsvStream` to `CsvParseStream` (#3287) +- BREAKING(encoding/varint): remove deprecated APIs (#3282) +- feat(datetime): add isUtcLeap (#3295) +- feat: add http/etag (#3245) +- fix(bytes): correct slice() of BytesList (#3292) +- fix(csv): improve typing for CSV parser (#3267) +- fix(dotenv): allow `null` for `*path` values (#3221) +- fix(encoding/ascii85): fix `encode()` returns a wrong result with a subarray + (#3310) +- fix(fs): fix NotFound error when moving src to itself with overwrite: true + (#3289) + ### 0.182.0 / 2023.03.31 - feat(csv): add `CsvStringifyStream` (#3270) diff --git a/version.ts b/version.ts index 0786c1bd7..dd0de0516 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.182.0"; +export const VERSION = "0.183.0";