Merge pull request #306 from develtech/update-versions

Simplify version mentioning in README, classifiers
This commit is contained in:
Tony Narlock 2017-12-17 07:50:22 -06:00 committed by GitHub
commit 7afacccd79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View file

@ -4,6 +4,11 @@ CHANGES
master (unreleased)
-------------------
3.1.1 (2017.12.17)
------------------
- Update classifiers and README via GH-306, fixes GH-305
3.1.0 (2017.12.11)
------------------

View file

@ -14,8 +14,7 @@ django-model-utils
Django model mixins and utilities.
``django-model-utils`` supports `Django`_ 1.8 through 1.10 (latest bugfix
release in each series only) on Python 2.7, 3.3 (Django 1.8 only), 3.4 and 3.5.
``django-model-utils`` supports `Django`_ 1.8 to 2.0.
.. _Django: http://www.djangoproject.com/
@ -23,12 +22,11 @@ This app is available on `PyPI`_.
.. _PyPI: https://pypi.python.org/pypi/django-model-utils/
Getting Help
============
Documentation for django-model-utils is available at https://django-model-utils.readthedocs.io/
Documentation for django-model-utils is available
https://django-model-utils.readthedocs.io/
Contributing
============

View file

@ -1,4 +1,4 @@
from .choices import Choices
from .tracker import FieldTracker, ModelTracker
__version__ = '3.1.0'
__version__ = '3.1.1'

View file

@ -46,7 +46,11 @@ setup(
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
],