mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0.223.0 (#4588)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
dd55f2801c
commit
2442373bdd
@ -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)
|
||||
|
@ -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");
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user