Skip to content

Commit fd9ca49

Browse files
authored
Prepare release 8.0.1 (#545)
1 parent 2694a40 commit fd9ca49

File tree

5 files changed

+21
-10
lines changed

5 files changed

+21
-10
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
# Changelog
22

33

4+
## 8.0.1
5+
* Enhancement: Add compatibility with `@angular/material`: `^20.0.0`
6+
* Fix: Missing brackground color on search input field
7+
[#542](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/542)
8+
9+
Thanks to @melroy89
10+
* Fix: When changing the font-size, the select input had a wrong height
11+
[#541](https://github.com/bithost-gmbh/ngx-mat-select-search/pull/541)
12+
13+
Thanks to @angelaki
14+
415
## 8.0.0
516
* Upgrade: Upgrade project to Angular 19
617
[#520](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/520)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If you feel like this library was useful to you and saved you and your business
3939

4040
Thank you very much to our financial supporters!
4141

42-
<!-- readme: pschulzk,sponsors -start -->
42+
<!-- readme: pschulzk,SalvatoreB98,sponsors -start -->
4343
<table>
4444
<tbody>
4545
<tr>
@@ -53,7 +53,7 @@ Thank you very much to our financial supporters!
5353
</tr>
5454
<tbody>
5555
</table>
56-
<!-- readme: pschulzk,sponsors -end -->
56+
<!-- readme: pschulzk,SalvatoreB98,sponsors -end -->
5757

5858
### Collaborators
5959

@@ -440,8 +440,8 @@ To use the [i18n](https://angular.io/guide/i18n) API for translation of the labe
440440

441441
#### Current release
442442

443-
* `@angular/core`: `^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0`
444-
* `@angular/material`: `^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0` with `MatSelectModule` (`@angular/material/select`)
443+
* `@angular/core`: `^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0`
444+
* `@angular/material`: `^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0` with `MatSelectModule` (`@angular/material/select`)
445445

446446

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

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngx-mat-select-search",
33
"description": "Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.",
4-
"version": "8.0.0",
4+
"version": "8.0.1",
55
"license": "MIT",
66
"scripts": {
77
"ng": "ng",
@@ -32,7 +32,7 @@
3232
],
3333
"homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search",
3434
"peerDependencies": {
35-
"@angular/material": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
35+
"@angular/material": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0"
3636
},
3737
"devDependencies": {
3838
"@angular-devkit/build-angular": "^19.1.6",

src/app/mat-select-search/ngx-mat-select-search.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import { ReactiveFormsModule } from '@angular/forms';
1919
import { MatSelectNoEntriesFoundDirective } from './mat-select-no-entries-found.directive';
2020
import { MatDividerModule } from '@angular/material/divider';
2121

22-
export const MatSelectSearchVersion = '8.0.0';
22+
export const MatSelectSearchVersion = '8.0.1';
2323
export { MatSelectSearchClearDirective };
2424
export { MatSelectNoEntriesFoundDirective };
2525

0 commit comments

Comments
 (0)