diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d865df..7085682 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ +## [1.5.0](https://github.com/Akurganow/is/compare/v1.4.0...v1.5.0) (2023-11-20) + + +### Features + +* **is-plain-object:** Check if the object has any non-enumerable properties ([ce5ec38](https://github.com/Akurganow/is/commit/ce5ec38613afd8c10ef5b6e2a80b24d99d288215)) + + +### Bug Fixes + +* add isArrayOfSame to index.ts ([1ffc18e](https://github.com/Akurganow/is/commit/1ffc18ef99e95bf79e70fcdd3ea5721380e3c8cb)) +* **detect:** export types ([aa0d0d5](https://github.com/Akurganow/is/commit/aa0d0d58d72149b448ac2e0c0516ae1f91f9a924)) +* **isArrayOf:** use .some instead of .every ([b88500d](https://github.com/Akurganow/is/commit/b88500dda72e9428ac5bc22951f956d99faad95c)) +* **isGeneratorFunction:** remove console.log ([45a0d72](https://github.com/Akurganow/is/commit/45a0d72a90d74f9438a10e6777eef141dbe829ff)) + ## [1.4.0](https://github.com/Akurganow/is/compare/v1.3.0...v1.4.0) (2023-10-10) @@ -46,4 +61,4 @@ ### Features -* Add isAsyncFunction ([ff7073c](https://github.com/Akurganow/is/commit/ff7073c7d6e2dfdca383cdb5d7ea0ddbff4139e6)) \ No newline at end of file +* Add isAsyncFunction ([ff7073c](https://github.com/Akurganow/is/commit/ff7073c7d6e2dfdca383cdb5d7ea0ddbff4139e6)) diff --git a/package-lock.json b/package-lock.json index aa81315..da3bc40 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@plq/is", - "version": "1.4.0", + "version": "1.5.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@plq/is", - "version": "1.4.0", + "version": "1.5.0", "license": "MIT", "devDependencies": { "@release-it/conventional-changelog": "^8.0.1", diff --git a/package.json b/package.json index 869f772..43b33d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@plq/is", - "version": "1.4.0", + "version": "1.5.0", "description": "Small utility package that provides a set of functions to check if a given argument is of a certain type", "main": "lib/index.js", "types": "lib/index.d.ts",