mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
0.189.0 (#3399)
Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
9daac3277a
commit
bde4acaa29
@ -1,3 +1,9 @@
|
||||
### 0.189.0 / 2023.05.24
|
||||
|
||||
- feat(async): add jitter to retry exponential backoff (#3379)
|
||||
- feat(collections/group_by): accept iterable input, add index param to callback
|
||||
(#3390)
|
||||
|
||||
### 0.188.0 / 2023.05.18
|
||||
|
||||
- fix(flags): correctly collect default value (#3380)
|
||||
|
@ -58,6 +58,18 @@ Deno.test({
|
||||
rdev: null,
|
||||
blksize: null,
|
||||
blocks: null,
|
||||
// @ts-ignore This ignore should be removed, but when cutting a 0.189.0
|
||||
// release the available Deno canary still doesn't have these fields
|
||||
isBlockDevice: null,
|
||||
// @ts-ignore This ignore should be removed, but when cutting a 0.189.0
|
||||
// release the available Deno canary still doesn't have these fields
|
||||
isCharDevice: null,
|
||||
// @ts-ignore This ignore should be removed, but when cutting a 0.189.0
|
||||
// release the available Deno canary still doesn't have these fields
|
||||
isFifo: null,
|
||||
// @ts-ignore This ignore should be removed, but when cutting a 0.189.0
|
||||
// release the available Deno canary still doesn't have these fields
|
||||
isSocket: null,
|
||||
};
|
||||
const actual = await calculate(fixture);
|
||||
assertEquals(actual, `W/"400-H0YzXysQPV20qNisAZMuvAEVuHV"`);
|
||||
|
@ -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.188.0";
|
||||
export const VERSION = "0.189.0";
|
||||
|
Loading…
Reference in New Issue
Block a user