diff --git a/Releases.md b/Releases.md index 05aed3b73..d6787d6d1 100644 --- a/Releases.md +++ b/Releases.md @@ -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) diff --git a/http/etag_test.ts b/http/etag_test.ts index 246124133..4532107c7 100644 --- a/http/etag_test.ts +++ b/http/etag_test.ts @@ -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"`); diff --git a/version.ts b/version.ts index 83c714d3a..cbe7cbd88 100644 --- a/version.ts +++ b/version.ts @@ -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";