Skip to content

Commit

Permalink
prepare release 7.0.5 (#447)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjohnny authored Nov 2, 2023
1 parent ca0b483 commit 102a200
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

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.4",
"version": "7.0.5",
"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"
"@angular/material": "^15.0.0 || ^16.0.0 || ^17.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.4';
export const MatSelectSearchVersion = '7.0.5';
export { MatSelectSearchClearDirective };
export { MatSelectNoEntriesFoundDirective };

Expand Down

0 comments on commit 102a200

Please sign in to comment.