Skip to content

Commit

Permalink
0.223.0 (#4588)
Browse files Browse the repository at this point in the history
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
  • Loading branch information
3 people committed Apr 15, 2024
1 parent dd55f28 commit 2442373
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions 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)
Expand Down
4 changes: 2 additions & 2 deletions fs/ensure_file_test.ts
Expand Up @@ -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");
Expand Down Expand Up @@ -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");
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Expand Up @@ -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";

0 comments on commit 2442373

Please sign in to comment.