This commit is contained in:
David Sherret 2021-08-23 18:18:04 -04:00 committed by GitHub
parent 2fb3577559
commit d7cbbf3fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 7 deletions

View File

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

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.105.0";
export const VERSION = "0.106.0";