From 2442373bdd866302e6a6c456812a72e1d2cab855 Mon Sep 17 00:00:00 2001 From: denobot <33910674+denobot@users.noreply.github.com> Date: Mon, 15 Apr 2024 19:31:19 -0400 Subject: [PATCH] 0.223.0 (#4588) 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 --- Releases.md | 5 +++++ fs/ensure_file_test.ts | 4 ++-- version.ts | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Releases.md b/Releases.md index b80433ba7872..5abaa7136a8e 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,8 @@ +### 0.223.0 / 2024.04.15 + +- deprecation(expect): rename `addSnapshotSerializers` to + `addSnapshotSerializer` (#4582) + ### 0.222.1 / 2024.04.11 - deprecation(semver): deprecate `rangeMax()` and `rangeMin()` (#4561) diff --git a/fs/ensure_file_test.ts b/fs/ensure_file_test.ts index 7569df4d6140..ff09835ef1f8 100644 --- a/fs/ensure_file_test.ts +++ b/fs/ensure_file_test.ts @@ -145,7 +145,7 @@ Deno.test({ path.join(testdataDir, "ensure_file_9"), path.join(testdataDir, "ensure_file_9", "test.txt"), ], - run: ["deno"], + run: [Deno.execPath()], }, async fn() { const testDir = path.join(testdataDir, "ensure_file_9"); @@ -182,7 +182,7 @@ Deno.test({ path.join(testdataDir, "ensure_file_10"), path.join(testdataDir, "ensure_file_10", "test.txt"), ], - run: ["deno"], + run: [Deno.execPath()], }, fn() { const testDir = path.join(testdataDir, "ensure_file_10"); diff --git a/version.ts b/version.ts index 6b1667f6a28e..335d3c7071c7 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.222.1"; +export const VERSION = "0.223.0";