Skip to content

Commit

Permalink
updated changelog v0.1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
PillowPillow committed Aug 14, 2015
1 parent 38a9d95 commit 5c8cd84
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
## 0.1.10 (2015-08-14)

@conceal: [new feature]
> the conceal decorator is now available.
> it provides a way to declare the class members as private.
````javascript
import {factory, inject, conceal} from 'node_modules/ng-annotations';

@factory()
@inject('$http')
class MyFactory {
@conceal
@attach('$http')
$http

@conceal
datas = [];

getDatas() {
return this.datas;
}
}


import {service, inject} from 'node_modules/ng-annotations';

@service()
@inject(MyFactory)
class MyService {

constructor(myFactory) {
myFactory.$http; // not defined
myFactory.datas; // not defined
myFactory.getDatas; // defined
}

}


````

## 0.1.9 (2015-08-12)

Bugfix:
Expand Down

0 comments on commit 5c8cd84

Please sign in to comment.