Skip to content

Commit

Permalink
chore: prepare release 3.1.1 (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
macjohnny authored Oct 17, 2020
1 parent d491046 commit cf7f434
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 3.1.1
* Enhancement: Add compatibility with `@angular/core`: `^11.0.0`, `@angular/material`: `^11.0.0`
* Fix: set first item active if no item is active after filtering
[#263](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/263)

Thanks to @Ayoubane for reporting
* Fix: in multi select mode after enter the search is not focused
[#265](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/265)

Thanks to @bulldog98

## 3.1.0
* Feature: Support Right-To-Left
[#258](https://github.com/bithost-gmbh/ngx-mat-select-search/issues/258)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ To use the [i18n](https://angular.io/guide/i18n) API for translation of the labe

### Compatibility

* `@angular/core`: `^8.0.0 || ^9.0.0 || ^10.0.0`,
* `@angular/material`: `^8.0.0 || ^9.0.0 || ^10.0.0`
* `@angular/core`: `^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0`,
* `@angular/material`: `^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0`

For compatibility with `@angular/core`: `^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0`,
use version `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": "3.1.0",
"version": "3.1.1",
"license": "MIT",
"scripts": {
"ng": "ng",
Expand Down Expand Up @@ -34,7 +34,7 @@
],
"homepage": "https://github.com/bithost-gmbh/ngx-mat-select-search",
"peerDependencies": {
"@angular/material": "^8.0.0 || ^9.0.0 || ^10.0.0"
"@angular/material": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.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 = '3.1.0';
export const MatSelectSearchVersion = '3.1.1';


@NgModule({
Expand Down

0 comments on commit cf7f434

Please sign in to comment.