diff --git a/README b/README index 4d878d9..d0f9948 100644 --- a/README +++ b/README @@ -58,6 +58,9 @@ Changelog: * It is now possible to minimize the number of queries when using django-authority by caching the results of the Permission query. This can be done by adding ``AUTHORITY_USE_SMART_CACHE = True`` to your settings.py +* Confirmed support (via travis ci) for all combinations of Python 2.6, + Python2.7 and Django 1.3, Django 1.4, Django 1.5. Added Python 3.3 support + for Django 1.5 0.4 (2010-01-15): diff --git a/setup.py b/setup.py index fd44f95..2acefb2 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def read(fname): setup( name='django-authority', - version='0.4', + version='0.5', description=( "A Django app that provides generic per-object-permissions " "for Django's auth app." @@ -28,6 +28,7 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.3', 'Framework :: Django', 'Framework :: Django :: 1.3', 'Framework :: Django :: 1.4',