From 6dfac64b43357791d5b7a4c979616cbd2d641229 Mon Sep 17 00:00:00 2001 From: Esteban Gehring Date: Thu, 3 Feb 2022 09:40:33 +0100 Subject: [PATCH] prepare release 4.0.2, add compatibility with angular 14 (#357) --- CHANGELOG.md | 3 +++ README.md | 6 +++--- package-lock.json | 2 +- package.json | 4 ++-- src/app/mat-select-search/ngx-mat-select-search.module.ts | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2cbcd7..456f970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 4.0.2 +* Enhancement: Add compatibility with `@angular/core`: `^14.0.0`, `@angular/material`: `^14.0.0` + ## 4.0.1 * Fix: Remove incompatible angular versions from `Readme.md` and `package.json` diff --git a/README.md b/README.md index 51ada36..cdd4a3c 100644 --- a/README.md +++ b/README.md @@ -87,12 +87,12 @@ To use the [i18n](https://angular.io/guide/i18n) API for translation of the labe #### Current release -* `@angular/core`: `^12.0.0 || ^13.0.0`, -* `@angular/material`: `^12.0.0 || ^13.0.0` +* `@angular/core`: `^12.0.0 || ^13.0.0 || ^14.0.0` +* `@angular/material`: `^12.0.0 || ^13.0.0 || ^14.0.0` #### Version [`3.3.3`](https://github.com/bithost-gmbh/ngx-mat-select-search/tree/3.3.3) -* `@angular/core`: `^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0`, +* `@angular/core`: `^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0` * `@angular/material`: `^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0` #### Version [`1.8.0`](https://github.com/bithost-gmbh/ngx-mat-select-search/tree/1.8.0) diff --git a/package-lock.json b/package-lock.json index 3c42616..4b0991e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ngx-mat-select-search", - "version": "4.0.1", + "version": "4.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0fca512..41b5203 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.0.1", + "version": "4.0.2", "license": "MIT", "scripts": { "ng": "ng", @@ -33,7 +33,7 @@ ], "homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search", "peerDependencies": { - "@angular/material": "^12.0.0 || ^13.0.0" + "@angular/material": "^12.0.0 || ^13.0.0 || ^14.0.0" }, "ngPackage": { "dest": "dist-lib", 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 17c552c..f442de1 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.0.1'; +export const MatSelectSearchVersion = '4.0.2'; export { MatSelectSearchClearDirective }; @NgModule({