diff --git a/CHANGELOG.md b/CHANGELOG.md index 41090a9..485415e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.1.0](https://github.com/adamhamlin/deep-equality-data-structures/compare/v1.0.3...v1.1.0) (2023-01-05) + + +### Features + +* Improve type safety of custom transform functions ([#10](https://github.com/adamhamlin/deep-equality-data-structures/issues/10)) ([ee8a4ec](https://github.com/adamhamlin/deep-equality-data-structures/commit/ee8a4ec5de683e0ccb0e98e171ae9d61b8bd4c21)) + ### [1.0.3](https://github.com/adamhamlin/deep-equality-data-structures/compare/v1.0.2...v1.0.3) (2022-12-18) diff --git a/package-lock.json b/package-lock.json index e003dfd..fc21604 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "deep-equality-data-structures", - "version": "1.0.3", + "version": "1.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "deep-equality-data-structures", - "version": "1.0.3", + "version": "1.1.0", "license": "MIT", "dependencies": { "object-hash": "^3.0.0" diff --git a/package.json b/package.json index ec587c8..16c7110 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "deep-equality-data-structures", - "version": "1.0.3", + "version": "1.1.0", "description": "Javascript data structures (e.g., Map, Set) that support deep object equality", "main": "dist/index.js", "types": "dist/index.d.ts",