From 6cb1ad740a03fb04c8b0c2eeaca5817b26e9ce48 Mon Sep 17 00:00:00 2001 From: Garret Wassermann Date: Sun, 4 Mar 2018 02:09:54 -0500 Subject: [PATCH] Bump version to 0.2.7, add README note about initial Django 2.0 support --- README.rst | 7 ++++++- demo/setup.py | 5 +++-- setup.py | 3 ++- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index c7bd19e7..a4521c28 100644 --- a/README.rst +++ b/README.rst @@ -62,7 +62,7 @@ Installation `django-helpdesk` requires: -* Django 1.11.x *only* +* Django 1.11.x * either Python 2.7 or 3.4+ **NOTE REGARDING PYTHON VERSION:** @@ -72,6 +72,11 @@ and Django itself (Django 2.0), so users and developers are encouraged to begin transitioning to Python 3 if have not already. New projects should definitely use Python 3! +**NOTE REGARDING DJANGO VERSION:** +The recommended release is Django 1.11. However, there initial support of +Django 2.0 as of version 0.2.7 if you'd like to try it out. +Please report any bugs you find! + You can quickly install the latest stable version of `django-helpdesk` app via `pip`:: diff --git a/demo/setup.py b/demo/setup.py index fbcebce1..88e9f0af 100644 --- a/demo/setup.py +++ b/demo/setup.py @@ -13,7 +13,7 @@ project_root = os.path.dirname(here) NAME = 'django-helpdesk-demodesk' DESCRIPTION = 'A demo Django project using django-helpdesk' README = open(os.path.join(here, 'README.rst')).read() -VERSION = '0.2.6' +VERSION = '0.2.7' #VERSION = open(os.path.join(project_root, 'VERSION')).read().strip() AUTHOR = 'django-helpdesk team' URL = 'https://github.com/django-helpdesk/django-helpdesk' @@ -23,7 +23,8 @@ CLASSIFIERS = ['Development Status :: 4 - Beta', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Framework :: Django'] + 'Framework :: Django :: 1.11', + 'Framework :: Django :: 2.0'] KEYWORDS = [] PACKAGES = ['demodesk'] REQUIREMENTS = [ diff --git a/setup.py b/setup.py index a33e8fed..ce8bf8c0 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from distutils.util import convert_path from fnmatch import fnmatchcase from setuptools import setup, find_packages -version = '0.2.6' +version = '0.2.7' # Provided as an attribute, so you can append to these instead # of replicating them: @@ -136,6 +136,7 @@ setup( "Programming Language :: Python :: 3.6", "Framework :: Django", "Framework :: Django :: 1.11", + "Framework :: Django :: 2.0", "Environment :: Web Environment", "Operating System :: OS Independent", "Intended Audience :: Customer Service",