Skip to content

Commit f0739cf

Browse files
author
Tobias Engelhardt
committed
chore: release 9.0.0
1 parent 37feac5 commit f0739cf

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
<a name="9.0.0"></a>
2+
# 9.0.0 (2020-07-10)
3+
4+
### Bug Fixes
5+
6+
* 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))
7+
8+
### Features
9+
10+
* Update to Angular 9 ([37feac56](https://github.com/CirclonGroup/angular-tree-component/commit/37feac56))
11+
12+
### Code Refactoring
13+
14+
* use on example app and move app to projects ([5ded257](https://github.com/CirclonGroup/angular-tree-component/commit/5ded257))
15+
* move library to projects and use ng-packagr for build ([a04ea64](https://github.com/CirclonGroup/angular-tree-component/commit/a04ea64))
16+
17+
### BREAKING CHANGES
18+
19+
* Provide TreeDraggedElement in root ([50dee1b](https://github.com/CirclonGroup/angular-tree-component/commit/50dee1b))
20+
21+
BEFORE:
22+
23+
Import TreeModule with `TreeModule.forRoot()` in base module.
24+
25+
```
26+
@NgModule({
27+
imports: [
28+
TreeModule.forRoot()
29+
]
30+
})
31+
export class MyModule {}
32+
```
33+
34+
AFTER:
35+
36+
Import TreeModule with `TreeModule` in all modules.
37+
38+
```
39+
@NgModule({
40+
imports: [
41+
TreeModule
42+
]
43+
})
44+
export class MyModule {}
45+
```
46+
147
<a name="8.5.6"></a>
248
# 8.5.6 (2020-14-02)
349
* Fixed mobxAutorun to treeMobxAutorun

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-tree-component",
3-
"version": "8.5.6",
3+
"version": "9.0.0",
44
"description": "A simple yet powerful tree component for Angular2",
55
"author": "Circlon Group <os-group@circlon.de>",
66
"homepage": "https://github.com/CirclonGroup/angular-tree-component",

projects/angular-tree-component/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-tree-component",
3-
"version": "8.5.6",
3+
"version": "9.0.0",
44
"peerDependencies": {
55
"core-js": "^2.5.4",
66
"lodash": "^4.17.11",

0 commit comments

Comments
 (0)