Co-authored-by: bartlomieju <bartlomieju@users.noreply.github.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
denobot 2023-05-25 00:17:41 +02:00 committed by GitHub
parent 9daac3277a
commit bde4acaa29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 1 deletions

View File

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

View File

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

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.188.0";
export const VERSION = "0.189.0";