Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
Changelog
=========

2.3.0 (2025-05-13)
==================

* feat: Improve default copy method to also copy placeholders and plugins by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/345
* fix: Only show language menu for more than one language by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/457
* Updates for file djangocms_versioning/locale/en/LC_MESSAGES/django.po in nl by @transifex-integration in https://github.com/django-cms/djangocms-versioning/pull/460
* Updates for file djangocms_versioning/locale/en/LC_MESSAGES/django.po in sq by @transifex-integration in https://github.com/django-cms/djangocms-versioning/pull/463
* Updates for file djangocms_versioning/locale/en/LC_MESSAGES/django.po in ru by @transifex-integration in https://github.com/django-cms/djangocms-versioning/pull/459
* fix: Use consistent django colors for accent object tools by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/464
* chore: Remove deprecated django CMS references by @fsbraun in https://github.com/django-cms/djangocms-versioning/pull/465


2.2.1 (2025-03-06)
==================

Expand Down
14 changes: 4 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
|django| |djangocms4|
|django| |djangocms|

*********************
django CMS Versioning
*********************

.. warning::

This is the development branch for django CMS version 4.1 support.

For django CMS V4.0 support, see `support/django-cms-4.0.x branch <https://github.com/django-cms/djangocms-versioning/tree/support/django-cms-4.0.x>`_


============
Installation
Expand All @@ -33,7 +27,7 @@ Add ``djangocms_versioning`` to your project's ``INSTALLED_APPS``.
Run::

python -m manage migrate djangocms_versioning
python -m manage create_versions --user-id <user-id-of-migration-user>
python -m manage create_versions --userid <user-id-of-migration-user>

to perform the application's database migrations and (only if you have an existing database) add version objects
needed to mark existing versions as draft.
Expand Down Expand Up @@ -105,7 +99,7 @@ To update transifex translation in this repo you need to download the
do not forget to run the ``compilemessages`` management command.


.. |django| image:: https://img.shields.io/badge/django-3.2%2B-blue.svg
.. |django| image:: https://img.shields.io/badge/django-4.2%2B-blue.svg
:target: https://www.djangoproject.com/
.. |djangocms4| image:: https://img.shields.io/badge/django%20CMS-4.1-blue.svg
.. |djangocms| image:: https://img.shields.io/badge/django%20CMS-4.1%2B-blue.svg
:target: https://www.django-cms.org/
2 changes: 1 addition & 1 deletion djangocms_versioning/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.2.1"
__version__ = "2.3.0"