From 9aeec90df53bb76885bd437a5f09964cbfd29fa7 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 16 Aug 2021 14:31:55 -0400 Subject: [PATCH] 0.105.0 --- Releases.md | 12 ++++++++++++ version.ts | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Releases.md b/Releases.md index f1caa2bd70f6..f148903f37d2 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,15 @@ +### 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) + ### 0.104.0 / 2021.08.10 - feat: Add `collections` module (#993, #1075, #1103, #1062, #1062, #1109, diff --git a/version.ts b/version.ts index 2427bda5a38f..86e732a099a7 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.104.0"; +export const VERSION = "0.105.0";