Skip to content

Commit

Permalink
prepare 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
VadimDez committed Feb 8, 2018
1 parent 6abb705 commit 0b342a9
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 4 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## 2.0.0
* [[#51](https://github.com/VadimDez/ngx-filter-pipe/pull/51)] - Restructure
* [[#42](https://github.com/VadimDez/ngx-filter-pipe/issues/42)] - AOT support
* [[#44](https://github.com/VadimDez/ngx-filter-pipe/issues/44)] - Angular 5

### Breaking change

*Bundle location is changed, therefore SYSTEMJS config should be updated*

Append to `map`
```js
var map = {
...
'ngx-filter-pipe': 'node_modules/ngx-filter-pipe/bundles'
}
```
and then add to `packages`

```js
var packages = {
...
'ngx-filter-pipe': { defaultExtension: 'js' }
}
```


## 1.0.2
* [[#50](https://github.com/VadimDez/ngx-filter-pipe/issues/50)] - How to call filterPipe transform from Component ?

Expand Down
4 changes: 2 additions & 2 deletions SYSTEMJS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Append to `map`
```js
var map = {
...
'ngx-filter-pipe': 'node_modules/ngx-filter-pipe'
'ngx-filter-pipe': 'node_modules/ngx-filter-pipe/bundles'
}
```

Expand All @@ -16,6 +16,6 @@ and then add to `packages`
```js
var packages = {
...
'ngx-filter-pipe': { main: 'dist/bundles/ngx-filter-pipe.umd.js' }
'ngx-filter-pipe': { defaultExtension: 'js' }
}
````
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-filter-pipe",
"version": "1.0.2",
"description": "Angular 2+ pipeline for filtering arrays",
"version": "2.0.0",
"description": "Angular 5+ pipeline for filtering arrays",
"author": "Vadym Yatsyuk <[email protected]>",
"license": "MIT",
"scripts": {
Expand Down

0 comments on commit 0b342a9

Please sign in to comment.