Skip to content

Commit

Permalink
Prepare 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimDez committed May 18, 2024
1 parent 766e4ef commit 6146e91
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

### 3.0.0 - 2024-05-18

- [[#173](https://github.com/VadimDez/ngx-order-pipe/pull/173)] - Upgrade to Angular 17
- [[#154](https://github.com/VadimDez/ngx-order-pipe/issues/154)] - Create Ivy build

### 2.2.0 - 2021-12-11

### Changed
Expand Down Expand Up @@ -51,9 +56,7 @@ Expression now accepts `string` as well as `array of strings` to perform multi o
Example, order by `name` and `age`:

```html
<div *ngFor="let item of items | orderBy: ['name', 'age']">
{{ item | json }}
</div>
<div *ngFor="let item of items | orderBy: ['name', 'age']">{{ item | json }}</div>
```

### 2.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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-order-pipe",
"version": "2.2.0",
"version": "3.0.0",
"description": "Angular order pipe, order collection by a field",
"scripts": {
"ng": "ng",
Expand Down

0 comments on commit 6146e91

Please sign in to comment.