Skip to content

Commit

Permalink
chore: release 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Engelhardt committed Jul 10, 2020
1 parent 37feac5 commit f0739cf
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 2 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,49 @@
<a name="9.0.0"></a>
# 9.0.0 (2020-07-10)

### Bug Fixes

* Use correct ITreeOptions input in TreeComponent instead of TreeOptions ([#795](https://github.com/CirclonGroup/angular-tree-component/issues/795)) ([62f0c02](https://github.com/CirclonGroup/angular-tree-component/commit/62f0c02)), closes ([#795](https://github.com/CirclonGroup/angular-tree-component/issues/795))

### Features

* Update to Angular 9 ([37feac56](https://github.com/CirclonGroup/angular-tree-component/commit/37feac56))

### Code Refactoring

* use on example app and move app to projects ([5ded257](https://github.com/CirclonGroup/angular-tree-component/commit/5ded257))
* move library to projects and use ng-packagr for build ([a04ea64](https://github.com/CirclonGroup/angular-tree-component/commit/a04ea64))

### BREAKING CHANGES

* Provide TreeDraggedElement in root ([50dee1b](https://github.com/CirclonGroup/angular-tree-component/commit/50dee1b))

BEFORE:

Import TreeModule with `TreeModule.forRoot()` in base module.

```
@NgModule({
imports: [
TreeModule.forRoot()
]
})
export class MyModule {}
```

AFTER:

Import TreeModule with `TreeModule` in all modules.

```
@NgModule({
imports: [
TreeModule
]
})
export class MyModule {}
```

<a name="8.5.6"></a>
# 8.5.6 (2020-14-02)
* Fixed mobxAutorun to treeMobxAutorun
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-tree-component",
"version": "8.5.6",
"version": "9.0.0",
"description": "A simple yet powerful tree component for Angular2",
"author": "Circlon Group <[email protected]>",
"homepage": "https://github.com/CirclonGroup/angular-tree-component",
Expand Down
2 changes: 1 addition & 1 deletion projects/angular-tree-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-tree-component",
"version": "8.5.6",
"version": "9.0.0",
"peerDependencies": {
"core-js": "^2.5.4",
"lodash": "^4.17.11",
Expand Down

0 comments on commit f0739cf

Please sign in to comment.