From fe02de4b05c7fc9338dc6be4ef417f068bee2df9 Mon Sep 17 00:00:00 2001 From: Esteban Gehring Date: Wed, 22 Jan 2025 14:32:49 +0100 Subject: [PATCH] prepare release 7.0.10 (#516) --- CHANGELOG.md | 6 ++++++ package-lock.json | 2 +- package.json | 2 +- src/app/mat-select-search/ngx-mat-select-search.module.ts | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 799e3e6..4118715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog +## 7.0.10 +* Fix: Explicitly set `standalone: false` for Angular 19 compatibility + [#512](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/512) + + Thanks to @GipHub123 + ## 7.0.9 * Enhancement: Make Placeholder color tunable. [#506](https://github.com/bithost-gmbh/ngx-mat-select-search/pull/506) diff --git a/package-lock.json b/package-lock.json index 5ef970e..c4b6985 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "7.0.9", + "version": "7.0.10", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index d46c865..c9fe61f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ngx-mat-select-search", "description": "Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.", - "version": "7.0.9", + "version": "7.0.10", "license": "MIT", "scripts": { "ng": "ng", diff --git a/src/app/mat-select-search/ngx-mat-select-search.module.ts b/src/app/mat-select-search/ngx-mat-select-search.module.ts index 9634980..133e767 100755 --- a/src/app/mat-select-search/ngx-mat-select-search.module.ts +++ b/src/app/mat-select-search/ngx-mat-select-search.module.ts @@ -19,7 +19,7 @@ import { ReactiveFormsModule } from '@angular/forms'; import { MatSelectNoEntriesFoundDirective } from './mat-select-no-entries-found.directive'; import { MatDividerModule } from '@angular/material/divider'; -export const MatSelectSearchVersion = '7.0.9'; +export const MatSelectSearchVersion = '7.0.10'; export { MatSelectSearchClearDirective }; export { MatSelectNoEntriesFoundDirective };