Skip to content

Commit

Permalink
chore(all): prepare-release v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
janvanderhaegen committed Apr 16, 2015
1 parent 54cceb1 commit 5dc9a1c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 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.2.1",
"version": "0.2.2",
"description": "A validation plugin for Aurelia.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/resources/en-US.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ define(['exports', '../validation/utilities'], function (exports, _validationUti
return 'can contain only letters or spaces';
},
BetweenLengthValidationRule: function BetweenLengthValidationRule(newValue, threshold) {
return 'needs to be at between ' + _validationUtilities.Utilities.getValue(threshold.minimumLength) + ' and ' + _validationUtilities.Utilities.getValue(threshold.maximumLength) + ' characters long';
return 'needs to be between ' + _validationUtilities.Utilities.getValue(threshold.minimumLength) + ' and ' + _validationUtilities.Utilities.getValue(threshold.maximumLength) + ' characters long';
},
BetweenValueValidationRule: function BetweenValueValidationRule(newValue, threshold) {
return 'needs to be between ' + _validationUtilities.Utilities.getValue(threshold.minimumValue) + ' and ' + _validationUtilities.Utilities.getValue(threshold.maximumValue);
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/resources/en-US.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var data = {
return 'can contain only letters or spaces';
},
BetweenLengthValidationRule: function BetweenLengthValidationRule(newValue, threshold) {
return 'needs to be at between ' + _Utilities.Utilities.getValue(threshold.minimumLength) + ' and ' + _Utilities.Utilities.getValue(threshold.maximumLength) + ' characters long';
return 'needs to be between ' + _Utilities.Utilities.getValue(threshold.minimumLength) + ' and ' + _Utilities.Utilities.getValue(threshold.maximumLength) + ' characters long';
},
BetweenValueValidationRule: function BetweenValueValidationRule(newValue, threshold) {
return 'needs to be between ' + _Utilities.Utilities.getValue(threshold.minimumValue) + ' and ' + _Utilities.Utilities.getValue(threshold.maximumValue);
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/resources/en-US.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export let data = {
return `can contain only letters or spaces`;
},
'BetweenLengthValidationRule': (newValue, threshold) => {
return `needs to be at between ${Utilities.getValue(threshold.minimumLength)} and ${Utilities.getValue(threshold.maximumLength)} characters long`;
return `needs to be between ${Utilities.getValue(threshold.minimumLength)} and ${Utilities.getValue(threshold.maximumLength)} characters long`;
},
'BetweenValueValidationRule': (newValue, threshold) => {
return `needs to be between ${Utilities.getValue(threshold.minimumValue)} and ${Utilities.getValue(threshold.maximumValue)}`;
Expand Down
2 changes: 1 addition & 1 deletion dist/system/resources/en-US.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ System.register(['../validation/utilities'], function (_export) {
return 'can contain only letters or spaces';
},
BetweenLengthValidationRule: function BetweenLengthValidationRule(newValue, threshold) {
return 'needs to be at between ' + Utilities.getValue(threshold.minimumLength) + ' and ' + Utilities.getValue(threshold.maximumLength) + ' characters long';
return 'needs to be between ' + Utilities.getValue(threshold.minimumLength) + ' and ' + Utilities.getValue(threshold.maximumLength) + ' characters long';
},
BetweenValueValidationRule: function BetweenValueValidationRule(newValue, threshold) {
return 'needs to be between ' + Utilities.getValue(threshold.minimumValue) + ' and ' + Utilities.getValue(threshold.maximumValue);
Expand Down
14 changes: 14 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
### 0.2.2 (2015-04-16)


#### Bug Fixes

* **withMessage:** withMessage after isNotEmpty() ([69e27af5](https://github.com/aurelia/validation/commit/69e27af5e51f34fc844200d13ab1a68c0f8e6b8c), closes [#43](https://github.com/aurelia/validation/issues/43))


#### Features

* **I18N:** added es-MX ([edab3939](https://github.com/aurelia/validation/commit/edab39390daf928396a6c9b3dad27296b6c79f77))
* **i18n:** added resource for language es-MX ([55f65257](https://github.com/aurelia/validation/commit/55f6525769133b342289c4e262ba616f63dfd2eb))


### 0.2.1 (2015-04-14)


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": "0.2.1",
"version": "0.2.2",
"description": "A validation plugin for Aurelia.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 5dc9a1c

Please sign in to comment.