Skip to content

Commit

Permalink
prepare release 4.0.2, add compatibility with angular 14 (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjohnny authored Feb 3, 2022
1 parent a75373e commit 6dfac64
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/app/mat-select-search/ngx-mat-select-search.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down

0 comments on commit 6dfac64

Please sign in to comment.