Commit 3e0832cc8ab0f6c4f048731f08e279a29e8f928e

Authored by Claude Paroz
1 parent 56878794

Bumped version to 1.8.0

Showing 2 changed files with 6 additions and 4 deletions
@@ -3,14 +3,16 @@ @@ -3,14 +3,16 @@
3 History 3 History
4 ======= 4 =======
5 5
6 -Pending  
7 -------- 6 +1.8.0 (2017-02-03)
  7 +------------------
8 8
9 * Fixed a packaging error which caused sub-packages of the tests to be 9 * Fixed a packaging error which caused sub-packages of the tests to be
10 distributed. 10 distributed.
11 * Use ``get_current_site`` to look up the site instead of ``settings.SITE_ID``. 11 * Use ``get_current_site`` to look up the site instead of ``settings.SITE_ID``.
  12 +* Confirmed support for Django 1.11.
12 * Dropped Django 1.7 and Python 3.2/3.3 support. 13 * Dropped Django 1.7 and Python 3.2/3.3 support.
13 * Added testing for Python 3.5. 14 * Added testing for Python 3.5.
  15 +* Updated translations.
14 16
15 1.7.3 (2016-09-13) 17 1.7.3 (2016-09-13)
16 ------------------ 18 ------------------
@@ -10,7 +10,7 @@ long_description = readme + history @@ -10,7 +10,7 @@ long_description = readme + history
10 10
11 setup( 11 setup(
12 name='django-contrib-comments', 12 name='django-contrib-comments',
13 - version='1.7.3', 13 + version='1.8.0',
14 url="https://github.com/django/django-contrib-comments", 14 url="https://github.com/django/django-contrib-comments",
15 description='The code formerly known as django.contrib.comments.', 15 description='The code formerly known as django.contrib.comments.',
16 long_description=long_description, 16 long_description=long_description,
@@ -39,5 +39,5 @@ setup( @@ -39,5 +39,5 @@ setup(
39 packages=find_packages(exclude=['tests', 'tests.*']), 39 packages=find_packages(exclude=['tests', 'tests.*']),
40 include_package_data=True, 40 include_package_data=True,
41 test_suite='tests.runtests.main', 41 test_suite='tests.runtests.main',
42 - install_requires=['Django>=1.7'] 42 + install_requires=['Django>=1.8']
43 ) 43 )
Please register or login to post a comment