Skip to content

Commit 6146e91

Browse files
committed
Prepare 3.0.0
1 parent 766e4ef commit 6146e91

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
### 3.0.0 - 2024-05-18
9+
10+
- [[#173](https://github.com/VadimDez/ngx-order-pipe/pull/173)] - Upgrade to Angular 17
11+
- [[#154](https://github.com/VadimDez/ngx-order-pipe/issues/154)] - Create Ivy build
12+
813
### 2.2.0 - 2021-12-11
914

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

5358
```html
54-
<div *ngFor="let item of items | orderBy: ['name', 'age']">
55-
{{ item | json }}
56-
</div>
59+
<div *ngFor="let item of items | orderBy: ['name', 'age']">{{ item | json }}</div>
5760
```
5861

5962
### 2.0.0

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-order-pipe",
3-
"version": "2.2.0",
3+
"version": "3.0.0",
44
"description": "Angular order pipe, order collection by a field",
55
"scripts": {
66
"ng": "ng",

0 commit comments

Comments
 (0)