Skip to content

Commit

Permalink
chore(all): prepare release 0.8.0
Browse files Browse the repository at this point in the history
This is a breaking change release. See the forthcoming blog post today.
  • Loading branch information
EisenbergEffect committed May 3, 2016
1 parent c5d51c0 commit d4254ba
Show file tree
Hide file tree
Showing 4 changed files with 3,611 additions and 2 deletions.
23 changes: 23 additions & 0 deletions aurelia-validation/aurelia-validation.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
declare module 'aurelia-validation' {
export const validationMetadataKey: any;
export class ValidationEngine {
static getValidationReporter(instance: any): any;
}
export class ValidationError {
message: any;
object: any;
propertyName: any;
value: any;
}
export class ValidationReporter {
add(object: any): any;
remove(object: any): any;
subscribe(callback: any): any;
publish(errors: any): any;
destroyObserver(observer: any): any;
}
export class Validator {
validate(object: any, prop: any): any;
getProperties(): any;
}
}
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.8.0 (2016-05-03)


#### Bug Fixes

* **package.json:** fix dependencies ([3415f243](https://github.com/aurelia/validation/commit/3415f243b158682bbcb0b45adaac2838a536fb33))


### 1.0.0-beta.1.0.0 (2016-01-29)


Expand Down
Loading

0 comments on commit d4254ba

Please sign in to comment.