Skip to content

Commit

Permalink
1.2.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Gagan Deep <pandafy.dev@gmail.com>
  • Loading branch information
pandafy committed Aug 16, 2024
1 parent e947985 commit b9c335a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 19 deletions.
18 changes: 16 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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]
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion django_x509/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 2, 0, 'alpha')
VERSION = (1, 2, 0, 'final')
__version__ = VERSION # alias


Expand Down
16 changes: 0 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
#!/usr/bin/env python
import os
import sys

from setuptools import find_packages, setup

from django_x509 import get_version
Expand All @@ -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(),
Expand Down

0 comments on commit b9c335a

Please sign in to comment.