diff --git a/AUTHORS b/AUTHORS index ddd30dd3..0a1845c9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -30,3 +30,5 @@ Codespeed is written and maintained by Miquel Torres Barceló and various contri Mark Watts Catalin G. Manciu Octavian Moraru + Iskander (Alex) Sharipov + Tim (Timmmm) diff --git a/CHANGELOG b/CHANGELOG index 7e8d6ce4..661a6ca2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,7 +1,11 @@ == Change Log == -=== Version 0.13.0 === +=== Version 0.13.0, February 23, 2019 === * NEW #263: Added support for Django 2.1, drop support for Django 1.8 +* NEW #255: Allow partial requests of timeline grid +* FIX #233: Ensure missing data points don’t lead to infinite loop +* FIX #242: Revision.tag field is not trimmed before insert +* FIX #250: All doesn't work after clicking None in comparison === Version 0.12.0, November 11, 2017 === diff --git a/setup.py b/setup.py index 80ba4b89..5cd5f0e9 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ setup( name='codespeed', - version='0.12.0', + version='0.13.0', author='Miquel Torres', author_email='tobami@gmail.com', url='https://github.com/tobami/codespeed', download_url="https://github.com/tobami/codespeed/tags", license='GNU Lesser General Public License version 2.1', keywords=['benchmarking', 'visualization'], - install_requires=['django>=1.8,<2.0', 'isodate>=0.4.7,<0.6', 'matplotlib>=1.4.3,<2.0'], + install_requires=['django>=1.11<2.2', 'isodate>=0.4.7,<0.6', 'matplotlib>=1.4.3,<2.0'], packages=find_packages(exclude=['ez_setup', 'sample_project']), setup_requires=['setuptools-markdown'], long_description_markdown_filename='README.md', @@ -28,6 +28,7 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', ] )