Skip to content

Commit e15a1a9

Browse files
committed
chore(release): bump version number to 2.0.0
1 parent 9f794a1 commit e15a1a9

File tree

2 files changed

+48
-1
lines changed

2 files changed

+48
-1
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
<a name="2.0.0"></a>
2+
# [2.0.0](https://github.com/tinesoft/ngx-wow/compare/v1.0.2...v2.0.0) (2018-10-09)
3+
4+
5+
### Bug Fixes
6+
7+
* **core:** item reveal events not fired if initialising WowService with no arguments ([ec56d5e](https://github.com/tinesoft/ngx-wow/commit/ec56d5e)), closes [#19](https://github.com/tinesoft/ngx-wow/issues/19)
8+
9+
10+
### Features
11+
12+
* **core:** update to `Angular v6.x.x` and higher ([ccdab37](https://github.com/tinesoft/ngx-wow/commit/ccdab37))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* **core:** `forRoot()` on `NgwWowModule` has been removed as no longer necessary
18+
19+
Before:
20+
21+
```ts
22+
import {NgwWowModule} from 'ngx-wow';
23+
24+
@NgModule({
25+
declarations: [AppComponent, ...],
26+
imports: [NgwWowModule.forRoot()],
27+
bootstrap: [AppComponent]
28+
})
29+
export class AppModule {
30+
}
31+
```
32+
33+
After:
34+
35+
```ts
36+
import {NgwWowModule} from 'ngx-wow';
37+
38+
@NgModule({
39+
declarations: [AppComponent, ...],
40+
imports: [NgwWowModule],
41+
bootstrap: [AppComponent]
42+
})
43+
export class AppModule {
44+
}
45+
46+
47+
148
<a name="1.0.2"></a>
249
## [1.0.2](https://github.com/tinesoft/ngx-wow/compare/v1.0.1...v1.0.2) (2017-12-31)
350

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ngx-wow",
33
"description": "Angular module for WOW.js.",
4-
"version": "1.0.2",
4+
"version": "2.0.0",
55
"homepage": "https://github.com/tinesoft/ngx-wow",
66
"author": {
77
"name": "Tine Kondo",

0 commit comments

Comments
 (0)