diff --git a/CHANGES.rst b/CHANGES.rst index 197d7b3..12e1fc0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,12 @@ +0.1.9 (2019-10-02) +------------------ + +* Added support for Django 2 +* Added support for Python 3.6 +* Drop support for Python (2.6, 3.3) +* Thanks to: + * `hirokinko `_ + 0.1.6 (2017-05-10) ------------------ @@ -64,7 +73,7 @@ * Test/example project * Now works if the first composant of the list of tuple is an integer -* Now max_length is not required, the Multiselect field calculate it automatically. +* Now max_length is not required, the Multiselect field calculate it automatically. * The max_choices attr can be a attr in the model field * Refactor the code * Spanish translations @@ -88,4 +97,4 @@ 0.0.1 (2012-09-27) ------------------ -* Initial version from the next `snippet `_ \ No newline at end of file +* Initial version from the next `snippet `_ diff --git a/README.rst b/README.rst index fb5d7ac..5eaa059 100644 --- a/README.rst +++ b/README.rst @@ -14,7 +14,7 @@ A new model field and form field. With this you can get a multiple select from a This egg is inspired by this `snippet `_. -Supported Python versions: 2.6, 2.7, 3.3+ +Supported Python versions: 2.7, 3.4+ Supported Django versions: 1.4-2.0+ diff --git a/setup.py b/setup.py index c5bba96..98185c4 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ def read(*rnames): setup( name="django-multiselectfield", - version="0.1.8", + version="0.1.9", author="Pablo Martin", author_email="goinnn@gmail.com", description="Django multiple select field",