diff --git a/HISTORY.md b/HISTORY.md index fe190c9..72122a1 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,11 @@ +0.1.4 +================== + +* Drops Django 1.7 support (mostly because it does not supports Python 3.5) +* Adds Python 3.5 support +* New: FormHook +* Deprecated: VieHook in favor of FormHook + 0.1.3 ================== @@ -17,4 +25,4 @@ 0.1.0 ================== -* Initial release \ No newline at end of file +* Initial release diff --git a/hooks/__init__.py b/hooks/__init__.py index acf3be3..bbab024 100644 --- a/hooks/__init__.py +++ b/hooks/__init__.py @@ -1 +1 @@ -__version__ = "0.1.3" \ No newline at end of file +__version__ = "0.1.4" diff --git a/setup.py b/setup.py index 4341e56..8cf5155 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='django-hooks', - version='0.1.3', + version='0.1.4', description='A plugin system for django.', author='Esteban Castro Borsani', author_email='ecastroborsani@gmail.com',