diff --git a/Releases.md b/Releases.md index 3091c4212b6c..25a1f3bec0ec 100644 --- a/Releases.md +++ b/Releases.md @@ -1,3 +1,7 @@ +### 0.198.0 / 2023.08.10 + +- feat(path): single file exports (#3510) + ### 0.197.0 / 2023.08.03 - BREAKING(testing/snapshot): change tab char serialization (#3447) diff --git a/assert/assert_object_match.ts b/assert/assert_object_match.ts index 8acb1242d72b..bd865c46eaf5 100644 --- a/assert/assert_object_match.ts +++ b/assert/assert_object_match.ts @@ -56,7 +56,7 @@ export function assertObjectMatch( } // On nested objects references, build a filtered object recursively else if (typeof value === "object" && value !== null) { const subset = (b as loose)[key]; - if ((typeof subset === "object") && (subset)) { + if ((typeof subset === "object") && subset) { // When both operands are maps, build a filtered map with common keys and filter nested objects inside if ((value instanceof Map) && (subset instanceof Map)) { filtered[key] = new Map( diff --git a/version.ts b/version.ts index 682139f9793a..6d7e691db5dd 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.197.0"; +export const VERSION = "0.198.0";