Skip to content

Commit

Permalink
- ship 1.1.14 version
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumepotier committed Mar 6, 2013
1 parent 86e7bd4 commit 64fc9a4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#Changelog

**1.1.14-dev (next version)**
**1.1.15 (next version)**

**1.1.14 (current stable)**

- added luhn validator in parsley.extra (#150)
- added inlist validator in parsley.extra (#153)
Expand All @@ -10,7 +12,7 @@
- added $('#form').parsley('isValid') to know if form constraints fails, without
adding DOM errors. Refs #94

**1.1.13 (current stable)**
**1.1.13**

- added jquery plugin manifest

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ See TODO.md

#Curent Stable Version

1.1.13
1.1.14

# Browser compatibility

Expand Down
5 changes: 2 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# new features

* Existence in a dataSet
* create a error summary attached to form
* Add native form sumbission parlsey(form).submit()
* Add data API to set error messages (by form and by field)

* [DONE] Add data API to set error messages (by form and by field)
* [DONE] Existence in a dataSet
* [DONE] Add minWords maxWords rangeWords validators
* [DONE] Ajax check
* [DONE] required on radio, checkboxes and selects
Expand All @@ -18,7 +18,6 @@
# refactos

* [DONE] refacto ugly manageErrors() function

* [DONE] stop binding `keypress` and `change` events by default. Must be passed as data
arguments. By default, onSubmit validation only

Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parsleyjs",
"version": "1.1.13",
"version": "1.1.14",
"main": ["./dist/*", "./i18n/*"],
"dependencies": {
"jquery": "1.8.*"
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ <h1>Javascript forms validation.<br/><strong>Powerful, UX aware &amp; Dead simpl
<a class="btn btn-large call-to-action" href="documentation.html">See documentation &amp; examples</a>
</p>
<ul class="masthead-links">
<li><i class="icon-download-alt"></i>&nbsp;<a href="https://github.com/guillaumepotier/Parsley.js/archive/1.1.13.zip">Download</a></li>
<li>Version 1.1.13</li>
<li><i class="icon-download-alt"></i>&nbsp;<a href="https://github.com/guillaumepotier/Parsley.js/archive/1.1.14.zip">Download</a></li>
<li>Version 1.1.14</li>
</ul>
</div>

Expand Down
9 changes: 5 additions & 4 deletions parsley.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
"description": "Never write a single javascript line anymore to validate your forms FrontEnd. Parsley will do that for you,and do it right, thanks to its powerful DOM-API !",
"keywords": [
"parsley",
"parsleyjs",
"forms",
"form",
"validation",
"validate",
"form"
"validate"
],
"version": "1.1.12",
"version": "1.1.14",
"author": {
"name": "Guillaume Potier",
"email": "[email protected]",
Expand All @@ -26,6 +27,6 @@
"docs": "http://parsleyjs.org/documentation.html",
"download": "https://github.com/guillaumepotier/Parsley.js/",
"dependencies": {
"jquery": ">=1.4.4"
"jquery": ">=1.7"
}
}

0 comments on commit 64fc9a4

Please sign in to comment.