Skip to content

Commit 4e56536

Browse files
authored
Bumped version to 5.2.8.0 (#368)
1 parent 941db8d commit 4e56536

File tree

3 files changed

+54
-54
lines changed

3 files changed

+54
-54
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
=========
44

5+
5.2.8.0 (2025-11-07)
6+
=====================
7+
8+
* Upgrade Django to 5.2.8
9+
see https://www.djangoproject.com/weblog/2025/nov/05/security-releases/ for details
10+
11+
512
5.2.7.0 (2025-10-01)
613
====================
714

aldryn_django/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '5.2.7.0'
1+
__version__ = "5.2.8.0"

setup.py

Lines changed: 46 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -3,80 +3,73 @@
33

44
from aldryn_django import __version__
55

6-
76
REQUIREMENTS = [
8-
'aldryn-addons',
9-
'Django==5.2.7',
10-
7+
"aldryn-addons",
8+
"Django==5.2.8",
119
# setup utils
12-
'dj-database-url',
13-
'dj-email-url',
14-
'dj-redis-url',
15-
'django-cache-url',
16-
'django-getenv',
17-
'aldryn-client',
18-
'furl',
19-
10+
"dj-database-url",
11+
"dj-email-url",
12+
"dj-redis-url",
13+
"django-cache-url",
14+
"django-getenv",
15+
"aldryn-client",
16+
"furl",
2017
# error reporting
21-
'aiocontextvars',
22-
'sentry-sdk',
23-
18+
"aiocontextvars",
19+
"sentry-sdk",
2420
# wsgi server related
25-
'uwsgi',
26-
21+
"uwsgi",
2722
# database
28-
'psycopg2',
29-
23+
"psycopg2",
3024
# storage
31-
'django-storage-url',
32-
'django-storages[boto3]',
33-
'django-storages[azure]',
34-
25+
"django-storage-url",
26+
"django-storages[boto3]",
27+
"django-storages[azure]",
3528
# helpers
36-
'click',
37-
'aldryn-sites>=0.5.6',
38-
'easy-thumbnails>=2.2',
29+
"click",
30+
"aldryn-sites>=0.5.6",
31+
"easy-thumbnails>=2.2",
3932
]
4033

4134

4235
CLASSIFIERS = [
43-
'Development Status :: 5 - Production/Stable',
44-
'Environment :: Web Environment',
45-
'Intended Audience :: Developers',
46-
'License :: OSI Approved :: BSD License',
47-
'Operating System :: OS Independent',
48-
'Framework :: Django',
49-
'Framework :: Django :: 5.1',
50-
'Programming Language :: Python',
51-
'Programming Language :: Python :: 3',
52-
'Programming Language :: Python :: 3.10',
53-
'Programming Language :: Python :: 3.11',
54-
'Programming Language :: Python :: 3.12',
55-
'Programming Language :: Python :: 3.13',
56-
'Topic :: Internet :: WWW/HTTP',
57-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
58-
'Topic :: Software Development',
59-
'Topic :: Software Development :: Libraries',
36+
"Development Status :: 5 - Production/Stable",
37+
"Environment :: Web Environment",
38+
"Intended Audience :: Developers",
39+
"License :: OSI Approved :: BSD License",
40+
"Operating System :: OS Independent",
41+
"Framework :: Django",
42+
"Framework :: Django :: 5.1",
43+
"Programming Language :: Python",
44+
"Programming Language :: Python :: 3",
45+
"Programming Language :: Python :: 3.10",
46+
"Programming Language :: Python :: 3.11",
47+
"Programming Language :: Python :: 3.12",
48+
"Programming Language :: Python :: 3.13",
49+
"Topic :: Internet :: WWW/HTTP",
50+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
51+
"Topic :: Software Development",
52+
"Topic :: Software Development :: Libraries",
6053
]
6154

6255

6356
setup(
64-
name='aldryn-django',
57+
name="aldryn-django",
6558
version=__version__,
66-
author='Divio AG',
67-
author_email='info@divio.ch',
68-
url='https://github.com/divio/aldryn-django',
69-
license='BSD-3-Clause',
70-
description='An opinionated Django setup bundled as an Aldryn Addon',
71-
long_description=open('README.rst').read(),
59+
author="Divio AG",
60+
author_email="info@divio.ch",
61+
url="https://github.com/divio/aldryn-django",
62+
license="BSD-3-Clause",
63+
description="An opinionated Django setup bundled as an Aldryn Addon",
64+
long_description=open("README.rst").read(),
7265
packages=find_packages(),
7366
include_package_data=True,
7467
zip_safe=False,
7568
install_requires=REQUIREMENTS,
7669
classifiers=CLASSIFIERS,
77-
test_suite='tests.settings.run',
78-
entry_points='''
70+
test_suite="tests.settings.run",
71+
entry_points="""
7972
[console_scripts]
8073
aldryn-django=aldryn_django.cli:main
81-
''',
74+
""",
8275
)

0 commit comments

Comments
 (0)