diff --git a/CHANGES.rst b/CHANGES.rst index fad277e..e489eb7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,24 @@ Changelog ========= -Version 1.2.0 [unreleased] +Version 1.2.0 [2024-08-14] -------------------------- -WIP +Changes +~~~~~~~ + +- Admin actions require model permissions to perform operation. + +Dependencies +++++++++++++ + +- Bumped ``openwisp-utils~=1.1.0``. +- Bumped ``cryptography~=43.0.0``. +- Bumped ``pyOpenSSL~=24.2.1``. +- Added support for Django ``4.2``. +- Dropped support for Django < ``3.2``. +- Added support for Python ``3.10``. +- Dropped support for Python ``3.7``. Version 1.1.0 [2022-04-20] -------------------------- diff --git a/django_x509/__init__.py b/django_x509/__init__.py index 60e34a6..1af3f76 100644 --- a/django_x509/__init__.py +++ b/django_x509/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 2, 0, 'alpha') +VERSION = (1, 2, 0, 'final') __version__ = VERSION # alias diff --git a/setup.py b/setup.py index 6a4a037..cda9167 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,4 @@ #!/usr/bin/env python -import os -import sys - from setuptools import find_packages, setup from django_x509 import get_version @@ -26,19 +23,6 @@ def get_install_requires(): return requirements -if sys.argv[-1] == 'publish': - # delete any *.pyc, *.pyo and __pycache__ - os.system('find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf') - os.system('python setup.py sdist bdist_wheel') - os.system('twine upload -s dist/*') - os.system('rm -rf dist build') - args = {'version': get_version()} - print('You probably want to also tag the version now:') - print(" git tag -a %(version)s -m 'version %(version)s'" % args) - print(' git push --tags') - sys.exit() - - setup( name='django-x509', version=get_version(),