Skip to content

Commit

Permalink
chore(all): prepare release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Oct 2, 2017
1 parent 3e48865 commit 9a192a2
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 20 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": "1.1.1",
"version": "1.1.2",
"description": "Validation for Aurelia applications",
"keywords": [
"aurelia",
Expand Down
3 changes: 1 addition & 2 deletions dist/amd/implementation/validation-rules.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Rule, RuleProperty } from './rule';
import { Rule, RuleProperty, ValidationDisplayNameAccessor } from './rule';
import { ValidationMessageParser } from './validation-message-parser';
import { ValidationDisplayNameAccessor } from './rule';
import { PropertyAccessorParser, PropertyAccessor } from '../property-accessor-parser';
/**
* Part of the fluent rule API. Enables customizing property rules.
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/validation-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ define(["require", "exports", "./validator", "./validate-trigger", "./property-i
if (rule.__manuallyAdded__) {
continue;
}
var rules = [rule];
var rules = [[rule]];
this.validate({ object: object, propertyName: propertyName, rules: rules });
}
};
Expand Down
3 changes: 1 addition & 2 deletions dist/commonjs/implementation/validation-rules.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Rule, RuleProperty } from './rule';
import { Rule, RuleProperty, ValidationDisplayNameAccessor } from './rule';
import { ValidationMessageParser } from './validation-message-parser';
import { ValidationDisplayNameAccessor } from './rule';
import { PropertyAccessorParser, PropertyAccessor } from '../property-accessor-parser';
/**
* Part of the fluent rule API. Enables customizing property rules.
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/validation-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ var ValidationController = (function () {
if (rule.__manuallyAdded__) {
continue;
}
var rules = [rule];
var rules = [[rule]];
this.validate({ object: object, propertyName: propertyName, rules: rules });
}
};
Expand Down
3 changes: 1 addition & 2 deletions dist/es2015/implementation/validation-rules.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Rule, RuleProperty } from './rule';
import { Rule, RuleProperty, ValidationDisplayNameAccessor } from './rule';
import { ValidationMessageParser } from './validation-message-parser';
import { ValidationDisplayNameAccessor } from './rule';
import { PropertyAccessorParser, PropertyAccessor } from '../property-accessor-parser';
/**
* Part of the fluent rule API. Enables customizing property rules.
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/validation-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ export class ValidationController {
if (rule.__manuallyAdded__) {
continue;
}
const rules = [rule];
const rules = [[rule]];
this.validate({ object, propertyName, rules });
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/es2017/implementation/validation-rules.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Rule, RuleProperty } from './rule';
import { Rule, RuleProperty, ValidationDisplayNameAccessor } from './rule';
import { ValidationMessageParser } from './validation-message-parser';
import { ValidationDisplayNameAccessor } from './rule';
import { PropertyAccessorParser, PropertyAccessor } from '../property-accessor-parser';
/**
* Part of the fluent rule API. Enables customizing property rules.
Expand Down
2 changes: 1 addition & 1 deletion dist/es2017/validation-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ export class ValidationController {
if (rule.__manuallyAdded__) {
continue;
}
const rules = [rule];
const rules = [[rule]];
this.validate({ object, propertyName, rules });
}
}
Expand Down
3 changes: 1 addition & 2 deletions dist/native-modules/implementation/validation-rules.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Rule, RuleProperty } from './rule';
import { Rule, RuleProperty, ValidationDisplayNameAccessor } from './rule';
import { ValidationMessageParser } from './validation-message-parser';
import { ValidationDisplayNameAccessor } from './rule';
import { PropertyAccessorParser, PropertyAccessor } from '../property-accessor-parser';
/**
* Part of the fluent rule API. Enables customizing property rules.
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/validation-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ var ValidationController = (function () {
if (rule.__manuallyAdded__) {
continue;
}
var rules = [rule];
var rules = [[rule]];
this.validate({ object: object, propertyName: propertyName, rules: rules });
}
};
Expand Down
3 changes: 1 addition & 2 deletions dist/system/implementation/validation-rules.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Rule, RuleProperty } from './rule';
import { Rule, RuleProperty, ValidationDisplayNameAccessor } from './rule';
import { ValidationMessageParser } from './validation-message-parser';
import { ValidationDisplayNameAccessor } from './rule';
import { PropertyAccessorParser, PropertyAccessor } from '../property-accessor-parser';
/**
* Part of the fluent rule API. Enables customizing property rules.
Expand Down
2 changes: 1 addition & 1 deletion dist/system/validation-controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ System.register(["./validator", "./validate-trigger", "./property-info", "./vali
if (rule.__manuallyAdded__) {
continue;
}
var rules = [rule];
var rules = [[rule]];
this.validate({ object: object, propertyName: propertyName, rules: rules });
}
};
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.1.2"></a>
## [1.1.2](https://github.com/aurelia/validation/compare/1.1.1...v1.1.2) (2017-10-02)


### Bug Fixes

* **validation-controller:** fix revalidateErrors method ([bcf8a46](https://github.com/aurelia/validation/commit/bcf8a46)), closes [#456](https://github.com/aurelia/validation/issues/456)



<a name="1.1.0"></a>
# [1.1.0](https://github.com/aurelia/validation/compare/1.0.0...v1.1.0) (2017-06-27)

Expand Down
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": "1.1.1",
"version": "1.1.2",
"description": "Validation for Aurelia applications",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 9a192a2

Please sign in to comment.