Skip to content

Commit

Permalink
chore(release): bump version number to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft committed Oct 9, 2018
1 parent 9f794a1 commit e15a1a9
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,50 @@
<a name="2.0.0"></a>
# [2.0.0](https://github.com/tinesoft/ngx-wow/compare/v1.0.2...v2.0.0) (2018-10-09)


### Bug Fixes

* **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)


### Features

* **core:** update to `Angular v6.x.x` and higher ([ccdab37](https://github.com/tinesoft/ngx-wow/commit/ccdab37))


### BREAKING CHANGES

* **core:** `forRoot()` on `NgwWowModule` has been removed as no longer necessary

Before:

```ts
import {NgwWowModule} from 'ngx-wow';

@NgModule({
declarations: [AppComponent, ...],
imports: [NgwWowModule.forRoot()],
bootstrap: [AppComponent]
})
export class AppModule {
}
```

After:

```ts
import {NgwWowModule} from 'ngx-wow';

@NgModule({
declarations: [AppComponent, ...],
imports: [NgwWowModule],
bootstrap: [AppComponent]
})
export class AppModule {
}



<a name="1.0.2"></a>
## [1.0.2](https://github.com/tinesoft/ngx-wow/compare/v1.0.1...v1.0.2) (2017-12-31)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ngx-wow",
"description": "Angular module for WOW.js.",
"version": "1.0.2",
"version": "2.0.0",
"homepage": "https://github.com/tinesoft/ngx-wow",
"author": {
"name": "Tine Kondo",
Expand Down

0 comments on commit e15a1a9

Please sign in to comment.