Skip to content

Commit

Permalink
going to 0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
marazmiki committed Feb 7, 2016
1 parent b82f88f commit 7684bb8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.rst
@@ -1,3 +1,13 @@
0.6.0
-----

* Drop support of older python versions (2.6, 3.2, 3.3)
* Drop support of older Django versions (1.6 and older)
* Add support for Python 3.5
* Add support for Django 1.9 (thanks to `Jordan Reiter <mailto:jordanreiter@gmail.com>`_
* Migrate to Django Applications API (thanks to `Jordan Reiter <mailto:jordanreiter@gmail.com>`_
* Improve PEP-0008 support and some minor code refactoring

0.5.2
-----

Expand Down
9 changes: 6 additions & 3 deletions setup.py
Expand Up @@ -7,7 +7,7 @@

ROOT_PACKAGE = 'django-domains'
DIR = os.path.dirname(__file__)
VERSION = '0.5.2'
VERSION = '0.6'


def long_description():
Expand All @@ -31,14 +31,17 @@ def version():

if __name__ == '__main__':
setup(name=ROOT_PACKAGE,
description=('An application that allows you to run many '
'different sites on one Django instance'),
description=(
'An application that allows you to run many '
'different sites on one Django instance'
),
author='Mikhail Porokhovnichenko',
author_email='marazmiki@gmail.com',
version=version(),
long_description=long_description(),
packages=find_packages(),
include_package_data=True,
install_requires=['Django'],
test_suite='tests.main',
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 7684bb8

Please sign in to comment.