diff --git a/CHANGES.rst b/CHANGES.rst index 1c9cf4d..4f92a6f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,15 +1,15 @@ Changes ======= -0.3.x ------ +0.3.0 (2016-07-06) +------------------ -- Added support for Django 1.8. -- Django 1.6 is no longer officially supported. -- Removed features that will be removed with Django 1.9. +- Added support for Django 1.8 and 1.9. +- Now works for Django 1.6-1.9 and Python 2.7, 3.3, 3.4, and 3.5 - Using the `syncdb` Django command is no longer recommended. Please use `migrate` instead. -- Removed South migrations in favor of Django migrations. +- Supports django migrations as well as a backwards compatible path for + south migrations. 0.2.5 (2014-10-25) ------------------ diff --git a/docs/conf.py b/docs/conf.py index cdf2a4a..3317684 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,16 +51,16 @@ # General information about the project. project = u'django-plugins' -copyright = u'2010-2015, sirex and krischer' +copyright = u'2010-2016, sirex and krischer' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '0.3.x' +version = '0.3' # The full verson, including alpha/beta/rc tags. -release = '0.3.x' +release = '0.3.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index db02dda..7da2373 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ def read_docs(filename): long_description += read_docs('CHANGES.rst') setup(name='django-plugins', - version='0.3.x', + version='0.3.0', author='Lion Krischer', author_email='lion.krischer@googlemail.com', packages=find_packages(exclude=['sample-project']),