Update info for release
This commit is contained in:
parent
3a0d70633f
commit
dd8590dac5
3 changed files with 13 additions and 4 deletions
13
CHANGES.rst
13
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 <https://github.com/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 <http://djangosnippets.org/snippets/1200/>`_
|
||||
* Initial version from the next `snippet <http://djangosnippets.org/snippets/1200/>`_
|
||||
|
|
|
@ -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 <http://djangosnippets.org/snippets/1200/>`_.
|
||||
|
||||
Supported Python versions: 2.6, 2.7, 3.3+
|
||||
Supported Python versions: 2.7, 3.4+
|
||||
|
||||
Supported Django versions: 1.4-2.0+
|
||||
|
||||
|
|
2
setup.py
2
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",
|
||||
|
|
Loading…
Reference in a new issue