diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fafa16d..5ef607a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,8 +3,8 @@ Changelog ######### -next (xxx xx, xxxx) -=================== +0.6 (May 8, 2019) +================= * Supports Django 1.11, Django 2.1, and Django 2.2. * Supports Python 2.7, 3.5, 3.6, and 3.7. diff --git a/setup.py b/setup.py index 2dc9aab..428d4ad 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def long_description(): setup( name='django-render-block', packages=find_packages(), - version='0.5', + version='0.6', description='Render a particular block from a template to a string.', long_description=long_description(), author='Patrick Cloke', @@ -34,12 +34,13 @@ def long_description(): 'Topic :: Internet', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Framework :: Django', 'License :: OSI Approved :: ISC License (ISCL)', ], install_requires=[ - 'django>=1.8.0', + 'django>=1.11', ], )