Skip to content

Commit

Permalink
0.198.0 (#3532)
Browse files Browse the repository at this point in the history
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
  • Loading branch information
denobot and littledivy authored Aug 10, 2023
1 parent be270a3 commit 4d4a29b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion assert/assert_object_match.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";

0 comments on commit 4d4a29b

Please sign in to comment.