diff --git a/Releases.md b/Releases.md index f148903f37d2..e2e72bce7fb4 100644 --- a/Releases.md +++ b/Releases.md @@ -1,14 +1,26 @@ +### 0.106.0 / 2021.08.23 + +- feat(async): add abort signal to delay (#1130) +- feat(collection): find_last_index to return undefined on no index found + (#1072) +- feat(node/buffer): add missing exports (#1140) +- feat(node/buffer): export atob and btoa (#1147) +- fix(node/perf-hooks): add PerformanceEntry to default export (#1152) +- fix(testing): `assertEquals` now considers constructors equal if one is + nullable and the other is Object (#1159) +- perf(collections): permutations optimisation (#1132) + ### 0.105.0 / 2021.08.16 -- refactor(bytes): rename `contains` to `includes` with optional argument - `fromIndex` (#1133) -- fix(crypto): make crypto bench depend on sibling version of testing module - (#1135) -- fix(collections): intersect does not handle duplicate values in head properly - (#1131) - docs(collections): fix typo in collections docs (#1127) - feat(collections): compile time guarantee on pure functions (#1119) - fix: type check examples in README files (#1121) +- fix(collections): intersect does not handle duplicate values in head properly + (#1131) +- fix(crypto): make crypto bench depend on sibling version of testing module + (#1135) +- refactor(bytes): rename `contains` to `includes` with optional argument + `fromIndex` (#1133) ### 0.104.0 / 2021.08.10 diff --git a/version.ts b/version.ts index 86e732a099a7..a13778f302b7 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.105.0"; +export const VERSION = "0.106.0";