diff --git a/CHANGES b/CHANGES index 8b9b45f..1828f9f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,9 @@ +- 1.1.2 + Fix some invalid exception messages + - 1.1.1 Allow variables on the custom messages - - 1.1 Allow custom messages diff --git a/docs/conf.py b/docs/conf.py index b96b366..1820533 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,9 +63,9 @@ # built documents. # # The short X.Y version. -version = '1.1.1' +version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/flask_validator/validator.py b/flask_validator/validator.py index 57629c6..cec269d 100644 --- a/flask_validator/validator.py +++ b/flask_validator/validator.py @@ -2,7 +2,7 @@ from sqlalchemy import event from .exceptions import ValidateError -__version__ = '1.1.1' +__version__ = '1.1.2' class FlaskValidator: diff --git a/setup.py b/setup.py index 931ca25..52c1c51 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='Flask-Validator', - version='1.1.1', + version='1.1.2', license='Mozilla Public License', author='Jesus Roldan', author_email='jesus.roldan@gmail.com',