diff --git a/CHANGES.txt b/CHANGES.txt index f747b31..7e85543 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ Changes ======= +1.3.8 (2014-10-07) +------------------ + +- Rename GitHub organization from django-security to django-pci to emphasize focus on providing assistance with building PCI compliant websites with Django. + [aclark4life] + 1.3.7 (2014-10-05) ------------------ @@ -191,13 +197,13 @@ Changes 1.2.6 (2012-12-04) ------------------ -- Remove unused import [aclark] +- Remove unused import [aclark4life] 1.2.5 (2012-11-28) ------------------ -- Fix setup.py [aclark] +- Fix setup.py [aclark4life] - Added ability to flag user accounts as unlockable. [kencochrane] - Added ipaddress as a param to the user_locked_out signal. [kencochrane] - Added a signal receiver for user_logged_out. [kencochrane] diff --git a/MANIFEST.in b/MANIFEST.in index d774919..9a013ab 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -5,3 +5,4 @@ recursive-include examples *.example recursive-include examples *.py recursive-include examples *.rst recursive-include examples *.sh +include Makefile diff --git a/setup.py b/setup.py index 9a66064..761c6c5 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os from setuptools import setup, find_packages -VERSION = '1.3.7' +VERSION = '1.3.8' setup( name='django-axes', @@ -13,12 +13,12 @@ setup( long_description=( open("README.rst").read() + '\n' + open("CHANGES.txt").read()), - keywords='django, security, authentication', + keywords='authentication, django, pci, security', author='Josh VanderLinden, Philip Neustrom, Michael Blume, Camilo Nova', author_email='codekoala@gmail.com', maintainer='Alex Clark', maintainer_email='aclark@aclark.net', - url='https://github.com/django-security/django-axes', + url='https://github.com/django-pci/django-axes', license='MIT', package_dir={'axes': 'axes'}, include_package_data=True,