Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
denobot 2024-04-15 19:31:19 -04:00 committed by GitHub
parent dd55f2801c
commit 2442373bdd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 8 additions and 3 deletions

View File

@ -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)

View File

@ -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");

View File

@ -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";