4.0.0
Breaking changes
There is a breaking change in this release. The change is likely to affect a very small group of users but it is a breaking change which explains why this release is 4.0.0.
The breaking change is caused by a fix in a typo in a public API:
The public method getConstrucotorMetadata
is now getConstructorMetadata
:
interface MetadataReader {
getConstrucotorMetadata(constructorFunc: Function): ConstructorMetadata;
getPropertiesMetadata(constructorFunc: Function): MetadataMap;
}
Is now:
interface MetadataReader {
getConstructorMetadata(constructorFunc: Function): ConstructorMetadata;
getPropertiesMetadata(constructorFunc: Function): MetadataMap;
}
Commits
@Greenkeeper update tslint to version 5.0.0 (#519) … 0c14e57
@Greenkeeper update @types/sinon to version 2.1.0 (#518) … 17e4541
@remojansen remojansen Add some test cases & solve coverage issues (#538) … 7a6a60e
@remojansen remojansen Fixes typo in public API #536 (#539) 93f83c2
@Greenkeeper Update gulp-tslint to the latest version 🚀 (#529) … 52596e0
@remojansen remojansen Added test case for #528 (#540) … 3553c79