Skip to content

Commit

Permalink
chore(all): prepare release 0.12.4
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Sep 12, 2016
1 parent 608e738 commit fce3471
Show file tree
Hide file tree
Showing 13 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-validation",
"version": "0.12.3",
"version": "0.12.4",
"description": "Validation for Aurelia applications",
"keywords": [
"aurelia",
Expand Down
1 change: 1 addition & 0 deletions dist/amd/validation-error.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export declare class ValidationError {
* @param propertyName The name of the invalid property. Optional.
*/
constructor(rule: any, message: string, object: any, propertyName?: string | null);
toString(): string;
}
3 changes: 3 additions & 0 deletions dist/amd/validation-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ define(["require", "exports"], function (require, exports) {
this.propertyName = propertyName;
this.id = ValidationError.nextId++;
}
ValidationError.prototype.toString = function () {
return this.message;
};
ValidationError.nextId = 0;
return ValidationError;
}());
Expand Down
1 change: 1 addition & 0 deletions dist/commonjs/validation-error.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export declare class ValidationError {
* @param propertyName The name of the invalid property. Optional.
*/
constructor(rule: any, message: string, object: any, propertyName?: string | null);
toString(): string;
}
3 changes: 3 additions & 0 deletions dist/commonjs/validation-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ var ValidationError = (function () {
this.propertyName = propertyName;
this.id = ValidationError.nextId++;
}
ValidationError.prototype.toString = function () {
return this.message;
};
ValidationError.nextId = 0;
return ValidationError;
}());
Expand Down
1 change: 1 addition & 0 deletions dist/es2015/validation-error.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export declare class ValidationError {
* @param propertyName The name of the invalid property. Optional.
*/
constructor(rule: any, message: string, object: any, propertyName?: string | null);
toString(): string;
}
3 changes: 3 additions & 0 deletions dist/es2015/validation-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@ export class ValidationError {
this.propertyName = propertyName;
this.id = ValidationError.nextId++;
}
toString() {
return this.message;
}
}
ValidationError.nextId = 0;
1 change: 1 addition & 0 deletions dist/native-modules/validation-error.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export declare class ValidationError {
* @param propertyName The name of the invalid property. Optional.
*/
constructor(rule: any, message: string, object: any, propertyName?: string | null);
toString(): string;
}
3 changes: 3 additions & 0 deletions dist/native-modules/validation-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ export var ValidationError = (function () {
this.propertyName = propertyName;
this.id = ValidationError.nextId++;
}
ValidationError.prototype.toString = function () {
return this.message;
};
ValidationError.nextId = 0;
return ValidationError;
}());
1 change: 1 addition & 0 deletions dist/system/validation-error.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ export declare class ValidationError {
* @param propertyName The name of the invalid property. Optional.
*/
constructor(rule: any, message: string, object: any, propertyName?: string | null);
toString(): string;
}
3 changes: 3 additions & 0 deletions dist/system/validation-error.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ System.register([], function(exports_1, context_1) {
this.propertyName = propertyName;
this.id = ValidationError.nextId++;
}
ValidationError.prototype.toString = function () {
return this.message;
};
ValidationError.nextId = 0;
return ValidationError;
}());
Expand Down
1 change: 1 addition & 0 deletions doc/api.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-validation",
"version": "0.12.3",
"version": "0.12.4",
"description": "Validation for Aurelia applications",
"keywords": [
"aurelia",
Expand Down

0 comments on commit fce3471

Please sign in to comment.