Skip to content

Commit

Permalink
Added support for django CMS 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FinalAngel committed Feb 28, 2024
1 parent 22bab5b commit 49d4358
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 47 deletions.
42 changes: 3 additions & 39 deletions CHANGELOG.rst
Expand Up @@ -3,43 +3,7 @@ Changelog
=========


3.11.5.0 (2024-02-14)
=====================
4.1.0.0 (2024-02-28)
====================

* Added support for django CMS 3.11.5


3.11.4.1 (2024-01-10)
=====================

* Pinned django-simple-captcha to <=0.5.20 as newer versions need 4.x


3.11.4.0 (2023-09-19)
=====================

* Added support for django CMS 3.11.4


3.11.3.0 (2023-05-09)
=====================

* Added support for django CMS 3.11.3


3.11.2.0 (2023-04-19)
=====================

* Added support for django CMS 3.11.2


3.11.1.0 (2022-12-14)
=====================

* Added support for django CMS 3.11.1


3.11.0.0 (2022-08-17)
=====================

* Added support for django CMS 3.11.0
* Added support for django CMS 4.1.0
10 changes: 5 additions & 5 deletions README.rst
Expand Up @@ -92,14 +92,14 @@ Once satisfied:
#. Notify the team via Slack.


.. |build| image:: https://github.com/divio/aldryn-django-cms/actions/workflows/default.yml/badge.svg?branch=support/3.11.x
.. |build| image:: https://github.com/divio/aldryn-django-cms/actions/workflows/default.yml/badge.svg?branch=support/4.1.x
:target: https://github.com/divio/aldryn-django-cms/actions
.. |coverage| image:: https://codecov.io/gh/divio/aldryn-django-cms/branch/support/3.11.x/graph/badge.svg
.. |coverage| image:: https://codecov.io/gh/divio/aldryn-django-cms/branch/support/4.1.x/graph/badge.svg
:target: https://codecov.io/gh/divio/aldryn-django-cms

.. |python| image:: https://img.shields.io/badge/python-3.7%20%7C%C2%A03.8%20%7C%C2%A03.9%20%7C%C2%A03.11-blue.svg
.. |python| image:: https://img.shields.io/badge/python-3.9%20%7C%C2%A03.10%20%7C%C2%A03.11%20%7C%C2%A03.12-blue.svg
:target: https://pypi.org/project/aldryn-django-cms/
.. |django| image:: https://img.shields.io/badge/django-2.2%20%7C%203.1%20%7C%C2%A03.2-blue.svg
.. |django| image:: https://img.shields.io/badge/django-3.2%20%7C%204.1%20%7C%C2%A04.2-blue.svg
:target: https://www.djangoproject.com/
.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-3.11-blue.svg
.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-4.1-blue.svg
:target: https://www.django-cms.org/
2 changes: 2 additions & 0 deletions aldryn_config.py
Expand Up @@ -85,6 +85,8 @@ def to_settings(self, data, settings):
'cms.context_processors.cms_settings',
])

settings['CMS_CONFIRM_VERSION4'] = True

middlewares = [
'cms.middleware.user.CurrentUserMiddleware',
'cms.middleware.page.CurrentPageMiddleware',
Expand Down
2 changes: 1 addition & 1 deletion aldryn_django_cms/__init__.py
@@ -1 +1 @@
__version__ = '3.11.5.0'
__version__ = '4.1.0.1'
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -5,7 +5,7 @@


REQUIREMENTS = [
'django-cms==3.11.5',
'django-cms==4.1.0',

'aldryn-addons',
'requests',
Expand All @@ -18,7 +18,6 @@

# Other common
# ------------
# TODO: mostly to be split out into other packages
'aldryn-snake',
'django-compressor',
'django-parler',
Expand Down

0 comments on commit 49d4358

Please sign in to comment.