diff --git a/CHANGES.rst b/CHANGES.rst index ac0503e1..8e2fbe8f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,9 @@ Changelog ========= -Version 0.1 [unreleased] +Version 0.1 [2020-09-10] ------------------------ -WIP +First and last release of django-freeradius. +Development has moved to `openwisp-radius `_, +this repository is archived. diff --git a/django_freeradius/__init__.py b/django_freeradius/__init__.py index c8fc3ea7..28a0e935 100644 --- a/django_freeradius/__init__.py +++ b/django_freeradius/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 0, 'alpha') +VERSION = (0, 1, 0, 'final') __version__ = VERSION # alias diff --git a/setup.py b/setup.py index 22c14f95..8e161d04 100644 --- a/setup.py +++ b/setup.py @@ -44,9 +44,9 @@ def get_install_requires(): long_description=open('README.rst').read(), url='https://github.com/openwisp/django-freeradius', download_url='https://github.com/openwisp/django-freeradius/releases', - platforms=['Platform Indipendent'], + platforms=['Platform Independent'], keywords=['django', 'freeradius', 'radius', 'AAA', 'openwisp'], - packages=find_packages(exclude=['tests', 'docs']), + packages=find_packages(exclude=['tests*', 'docs*']), include_package_data=True, zip_safe=False, install_requires=get_install_requires(),