Release version 0.1.6
This commit is contained in:
parent
6cdeff7b2a
commit
8846354dc2
3 changed files with 29 additions and 3 deletions
25
CHANGES.rst
25
CHANGES.rst
|
@ -1,3 +1,28 @@
|
|||
0.1.6 (2017-05-10)
|
||||
------------------
|
||||
|
||||
* Added support for Django 1.11
|
||||
* Added support for Python 3.6
|
||||
* Improved rendering in Django admin
|
||||
* Improved documentation
|
||||
* Thanks to:
|
||||
* `atten <https://github.com/atten>`_
|
||||
* `ixc <https://github.comixc>`_
|
||||
* `LeilaniAnn <https://github.comLeilaniAnn>`_
|
||||
|
||||
0.1.5 (2017-01-02)
|
||||
------------------
|
||||
|
||||
* Added support for Django 1.8-1.10
|
||||
* Added support for named groups in choices
|
||||
* Added support for min_choices argument
|
||||
* Various fixes
|
||||
* More tests
|
||||
* Thanks to:
|
||||
* `danilogbotelho <https://github.comdanilogbotelho>`_
|
||||
* `dmitry-krasilnikov <https://github.comdmitry-krasilnikov>`_
|
||||
* `Kamil Dębowski <https://github.comkdebowski>`_
|
||||
|
||||
0.1.4 (2016-02-23)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ This egg is inspired by this `snippet <http://djangosnippets.org/snippets/1200/>
|
|||
|
||||
Supported Python versions: 2.6, 2.7, 3.3+
|
||||
|
||||
Supported Django versions: 1.4-1.10+
|
||||
Supported Django versions: 1.4-1.11+
|
||||
|
||||
Installation
|
||||
============
|
||||
|
|
5
setup.py
5
setup.py
|
@ -21,12 +21,13 @@ from setuptools import setup, find_packages
|
|||
|
||||
|
||||
def read(*rnames):
|
||||
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
||||
with open(os.path.join(os.path.dirname(__file__), *rnames)) as f:
|
||||
return f.read()
|
||||
|
||||
|
||||
setup(
|
||||
name="django-multiselectfield",
|
||||
version="0.1.5",
|
||||
version="0.1.6",
|
||||
author="Pablo Martin",
|
||||
author_email="goinnn@gmail.com",
|
||||
description="Django multiple select field",
|
||||
|
|
Loading…
Reference in a new issue