diff --git a/CHANGELOG.md b/CHANGELOG.md index cf5cea4..2249f1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 4.1.2 +* Bugfix: Restoring selected values in mode multi throws error + [#376](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/376) + + Thanks to @qstiegler +* Chore: Update npm packages + ## 4.1.1 * Enhancement: Rename `MATSELECTSEARCH_GLOBAL_OPTIONS` to `MAT_SELECTSEARCH_DEFAULT_OPTIONS` [#369](https://github.com/bithost-gmbh/ngx-mat-select-search/pull/369) diff --git a/package-lock.json b/package-lock.json index fdd4513..f8ec611 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "4.1.1", + "version": "4.1.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 6eab944..5d36d35 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "$schema": "./node_modules/ng-packagr/package.schema.json", "name": "ngx-mat-select-search", "description": "Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.", - "version": "4.1.1", + "version": "4.1.2", "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 646bf8a..94c392e 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 @@ -17,7 +17,7 @@ import { CommonModule } from '@angular/common'; import { MatSelectSearchClearDirective } from './mat-select-search-clear.directive'; import { ReactiveFormsModule } from '@angular/forms'; -export const MatSelectSearchVersion = '4.1.1'; +export const MatSelectSearchVersion = '4.1.2'; export { MatSelectSearchClearDirective }; @NgModule({