diff --git a/CHANGELOG.md b/CHANGELOG.md index 9daeb1c..2b09578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ 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.0.0](https://github.com/samrith-s/arrayx/compare/v1.0.0-beta.3...v1.0.0) (2021-07-05) + + +### Features + +* implement `insertBefore` and `insertAfter` methods for conciseness ([06417c7](https://github.com/samrith-s/arrayx/commit/06417c77d9da459027fbb08da5f5b36c71e84a1f)) + + +### Bug Fixes + +* issue with `reduce` and `reduceRight` deducing initial value automatically ([cf22faa](https://github.com/samrith-s/arrayx/commit/cf22faac7f41319a7a79de577a808877f1cab522)) +* issue with length values returned by `push` and `unshift` ([365940c](https://github.com/samrith-s/arrayx/commit/365940c0e2b2ce2eb9413b610dafc8265c5e98e2)) +* reference error in `update` ([081b9a3](https://github.com/samrith-s/arrayx/commit/081b9a3e8151457f794d38e86a512b5c016e71dd)) +* update typing of `filter` to account for boolean ([6a0ad0c](https://github.com/samrith-s/arrayx/commit/6a0ad0c93da7cbfde3d7f728dcaafac6c947547e)) + ## [1.0.0-beta.3](https://github.com/samrith-s/arrayx/compare/v1.0.0-beta.2...v1.0.0-beta.3) (2021-07-05) ## [1.0.0-beta.2](https://github.com/samrith-s/arrayx/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2021-07-05) diff --git a/package.json b/package.json index 4561698..1d9ce7b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "arryx", - "version": "1.0.0-beta.3", + "version": "1.0.0", "description": "A lightweight implementation over native Javascript array for some extra sauce.", "main": "lib/index.js", "types": "lib/index.d.ts",