diff --git a/CHANGELOG.md b/CHANGELOG.md index c69a84a..6999c97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 7.0.5 +* Fix select search should compare values of options for first item + [#445](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/445) + + Thanks to @lorenzbaier +* Enhancement: Add compatibility with `@angular/material`: `^17.0.0` + ## 7.0.4 * Fix background issue with `@angular/material`: `^16.2.0` with toggle-all button [#435](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/435) diff --git a/README.md b/README.md index 89286a0..d25f96f 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,8 @@ To use the [i18n](https://angular.io/guide/i18n) API for translation of the labe #### Current release -* `@angular/core`: `^15.0.0 || ^16.0.0` -* `@angular/material`: `^15.0.0 || ^16.0.0` with `MatSelectModule` (`@angular/material/select`) +* `@angular/core`: `^15.0.0 || ^16.0.0 || ^17.0.0` +* `@angular/material`: `^15.0.0 || ^16.0.0 || ^17.0.0` with `MatSelectModule` (`@angular/material/select`) #### Version [`6.0.0`](https://github.com/bithost-gmbh/ngx-mat-select-search/tree/6.0.0) diff --git a/package-lock.json b/package-lock.json index 9dcc00d..ee81a9c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "ngx-mat-select-search", - "version": "7.0.4", + "version": "7.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "ngx-mat-select-search", - "version": "7.0.4", + "version": "7.0.5", "license": "MIT", "dependencies": { "tslib": "^2.4.0" diff --git a/package.json b/package.json index a5819e5..6d9241d 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.4", + "version": "7.0.5", "license": "MIT", "scripts": { "ng": "ng", @@ -32,7 +32,7 @@ ], "homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search", "peerDependencies": { - "@angular/material": "^15.0.0 || ^16.0.0" + "@angular/material": "^15.0.0 || ^16.0.0 || ^17.0.0" }, "devDependencies": { "@angular-devkit/build-angular": "^15.0.1", 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 bd286f3..905a230 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.4'; +export const MatSelectSearchVersion = '7.0.5'; export { MatSelectSearchClearDirective }; export { MatSelectNoEntriesFoundDirective };