From 92d1fb8ac156c0c268bdd99ade06e6a02b38e4f5 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Thu, 27 Apr 2023 22:39:26 +0200 Subject: [PATCH] 0.185.0 (#3336) 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 --- .github/workflows/ci.yml | 6 ++++-- Releases.md | 9 +++++++++ version.ts | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c864993abae..e7786f4c2f34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,8 +91,10 @@ jobs: - name: Check Deprecations run: "deno task lint:deprecations" - - name: Check Import paths in Docs - run: "deno task lint:doc-imports" + # TODO(bartlomieju): temporarily disabled, because it relies on + # `Deno[Deno.internal].core`, which was removed in v1.33.0. + # - name: Check Import paths in Docs + # run: "deno task lint:doc-imports" - name: Check non-test assertions run: deno task lint:check-assertions diff --git a/Releases.md b/Releases.md index d791dca885c7..41fd5c079953 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,12 @@ +### 0.185.0 / 2023.04.27 + +- feat(dotenv): allow reading from `.env` files without granting env access + (#3306) +- feat(jsonc): annotate return types (#3327) +- feat(uuid): uuid v3 (#3324) +- perf(http/file_server): avoid calculating Content-Type when 304 Not Modified + response (#3323) + ### 0.184.0 / 2023.04.18 - BREAKING(encoding): remove deprecated APIs (#3303) diff --git a/version.ts b/version.ts index 9c31e79fb45a..9c8b740f7399 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.184.0"; +export const VERSION = "0.185.0";