Skip to content

Commit

Permalink
upgrade to Django 5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Jan 3, 2024
1 parent 97cd0a7 commit 38042cf
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 73 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
- name: Install flake8
run: pip install --upgrade flake8
- name: Run flake8
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: 3.10
- run: python -m pip install isort
- name: isort
uses: liskin/gh-problem-matcher-wrap@v1
Expand All @@ -42,7 +42,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v1
- name: Install dependencies
Expand Down
63 changes: 2 additions & 61 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,66 +3,7 @@ Changelog
=========


4.2.9.0 (2024-01-02)
5.0.1.0 (2024-01-03)
====================

* Added support for Django 4.2.9


4.2.8.0 (2023-12-19)
====================

* Added support for Django 4.2.8


4.2.7.0 (2023-11-01)
====================

* Upgrade Django to 4.2.7 (fixes CVE-2023-46695)
see https://www.djangoproject.com/weblog/2023/nov/01/security-releases/ for details


4.2.6.0 (2023-10-05)
====================

* Upgrade Django to 4.2.6 (fixes CVE-2023-43665)
see https://www.djangoproject.com/weblog/2023/oct/04/security-releases/ for details


4.2.5.0 (2023-09-04)
====================

* Upgrade Django to 4.2.5 (fixes CVE-2023-41164)
see https://www.djangoproject.com/weblog/2023/sep/04/security-releases/ for details


4.2.4.0 (2023-08-09)
====================

* Added support for Django 4.2.4


4.2.3.0 (2023-07-03)
====================

* Upgrade Django to 4.2.3 (fixes CVE-2023-36053)
see https://www.djangoproject.com/weblog/2023/jul/03/security-releases/ for details


4.2.2.0 (2023-06-06)
====================

* Added support for Django 4.2.2


4.2.1.0 (2023-05-03)
====================

* Upgrade Django to 4.2.1 (fixes CVE-2023-31047)
see https://www.djangoproject.com/weblog/2023/may/03/security-releases/ for details


4.2.0.0 (2023-04-04)
====================

* Added support for Django 4.2
* Added support for Django 5.0.1
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,12 @@ You can run tests by executing::

.. |pypi| image:: https://badge.fury.io/py/aldryn-django.svg
:target: http://badge.fury.io/py/aldryn-django
.. |build| image:: https://github.com/divio/aldryn-django/actions/workflows/default.yml/badge.svg?branch=support/4.2.x
.. |build| image:: https://github.com/divio/aldryn-django/actions/workflows/default.yml/badge.svg?branch=support/5.0.x
:target: https://github.com/divio/aldryn-django/actions
.. |coverage| image:: https://codecov.io/gh/divio/aldryn-django/branch/support/4.2.x/graph/badge.svg
.. |coverage| image:: https://codecov.io/gh/divio/aldryn-django/branch/support/5.0.x/graph/badge.svg
:target: https://codecov.io/gh/divio/aldryn-django

.. |python| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%C2%A03.10-blue.svg
.. |python| image:: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%C2%A03.12-blue.svg
:target: https://pypi.org/project/aldryn-django/
.. |django| image:: https://img.shields.io/badge/django-4.2-blue.svg
.. |django| image:: https://img.shields.io/badge/django-5.0-blue.svg
:target: https://www.djangoproject.com/
2 changes: 1 addition & 1 deletion aldryn_django/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '4.2.9.0'
__version__ = '5.0.1.0'
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

REQUIREMENTS = [
'aldryn-addons',
'Django==4.2.9',
'Django==5.0.1',

# setup utils
'dj-database-url',
Expand Down Expand Up @@ -46,12 +46,12 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.0',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
Expand Down

0 comments on commit 38042cf

Please sign in to comment.