Skip to content

Commit

Permalink
prepare release 7.0.6 (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjohnny authored Mar 27, 2024
1 parent 9096430 commit adae46b
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

## 7.0.6
* Enhancement: Add compatibility with `@angular/material`: `^18.0.0`

## 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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,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 || ^17.0.0`
* `@angular/material`: `^15.0.0 || ^16.0.0 || ^17.0.0` with `MatSelectModule` (`@angular/material/select`)
* `@angular/core`: `^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0`
* `@angular/material`: `^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0` with `MatSelectModule` (`@angular/material/select`)

#### Version [`6.0.0`](https://github.com/bithost-gmbh/ngx-mat-select-search/tree/6.0.0)

Expand Down
4 changes: 2 additions & 2 deletions 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
@@ -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.5",
"version": "7.0.6",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -32,7 +32,7 @@
],
"homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search",
"peerDependencies": {
"@angular/material": "^15.0.0 || ^16.0.0 || ^17.0.0"
"@angular/material": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.1",
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 @@ -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.5';
export const MatSelectSearchVersion = '7.0.6';
export { MatSelectSearchClearDirective };
export { MatSelectNoEntriesFoundDirective };

Expand Down

0 comments on commit adae46b

Please sign in to comment.