From baaab0577bffcf4a4f5440179bbd78a6dab721a7 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 17 Jan 2025 11:24:19 +0000 Subject: [PATCH] chore(release): 3.0.0 [skip ci] # [3.0.0](https://github.com/laurence79/ts-array-extensions/compare/2.2.4...3.0.0) (2025-01-17) ### Bug Fixes * callback should be optional on first() and last() ([c1cc968](https://github.com/laurence79/ts-array-extensions/commit/c1cc9684bb00f9e95d964492e8a2b55a46cf1779)) ### Features * Add pipes ([#38](https://github.com/laurence79/ts-array-extensions/issues/38)) ([c1bdeff](https://github.com/laurence79/ts-array-extensions/commit/c1bdeff257933eb875b5ed5fb68207d46fa95ab3)) * Rename addToPrototype to apply ([f4b1c18](https://github.com/laurence79/ts-array-extensions/commit/f4b1c18a8b5b99779eb46f980a1f2eb037798f08)) ### BREAKING CHANGES * Async functions removed, new import path to apply to Array prototype --- CHANGELOG.md | 18 ++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a802b44..09bd502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# [3.0.0](https://github.com/laurence79/ts-array-extensions/compare/2.2.4...3.0.0) (2025-01-17) + + +### Bug Fixes + +* callback should be optional on first() and last() ([c1cc968](https://github.com/laurence79/ts-array-extensions/commit/c1cc9684bb00f9e95d964492e8a2b55a46cf1779)) + + +### Features + +* Add pipes ([#38](https://github.com/laurence79/ts-array-extensions/issues/38)) ([c1bdeff](https://github.com/laurence79/ts-array-extensions/commit/c1bdeff257933eb875b5ed5fb68207d46fa95ab3)) +* Rename addToPrototype to apply ([f4b1c18](https://github.com/laurence79/ts-array-extensions/commit/f4b1c18a8b5b99779eb46f980a1f2eb037798f08)) + + +### BREAKING CHANGES + +* Async functions removed, new import path to apply to Array prototype + # [3.0.0-beta.2](https://github.com/laurence79/ts-array-extensions/compare/3.0.0-beta.1...3.0.0-beta.2) (2025-01-17) diff --git a/package-lock.json b/package-lock.json index c3d4eb6..d7edeac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ts-array-extensions", - "version": "3.0.0-beta.2", + "version": "3.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "ts-array-extensions", - "version": "3.0.0-beta.2", + "version": "3.0.0", "license": "ISC", "devDependencies": { "@swc/jest": "^0.2.37", diff --git a/package.json b/package.json index 7b412e5..34264c0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ts-array-extensions", - "version": "3.0.0-beta.2", + "version": "3.0.0", "description": "A library that provides common array transformation functions", "keywords": [], "homepage": "https://github.com/laurence79/ts-array-extensions#readme",