diff --git a/CHANGELOG.md b/CHANGELOG.md index cb53c6ac..09e07a86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [v12.0.0](https://github.com/eduNEXT/eox-tenant/compare/v11.7.0...v12.0.0) - (2024-10-22) + +#### ⚠ BREAKING CHANGES + +- **Dropped Support for Django 3.2**: Removed support for Django 3.2 in this plugin. As a result, we have also dropped support for Open edX releases from Maple up to and including Palm, which rely on Django 3.2. Future versions of this plugin may not be compatible with these Open edX releases. + ## [v11.7.0](https://github.com/eduNEXT/eox-tenant/compare/v11.6.0...v11.7.0) - (2024-06-19) ### Added diff --git a/README.rst b/README.rst index c7a1b981..8e8e85c3 100644 --- a/README.rst +++ b/README.rst @@ -44,29 +44,29 @@ Add ``EDNX_USE_SIGNAL = True`` in each microsite/tenant that wants to use the pl Compatibility Notes -------------------- -+------------------+-----------------+ -| Open edX Release | Version | -+==================+=================+ -| Ironwood | < 3.0 | -+------------------+-----------------+ -| Juniper | >= 3.0 < 4.0 | -+------------------+-----------------+ -| Koa | >= 4.0 <= 5.1.3 | -+------------------+-----------------+ -| Lilac | >= 4.0 < 6.2 | -+------------------+-----------------+ -| Maple | >= 6.0 | -+------------------+-----------------+ -| Nutmeg | >= 6.2 | -+------------------+-----------------+ -| Olive | >= 8.0 | -+------------------+-----------------+ -| Palm | >= v11.7.0 | -+------------------+-----------------+ -| Quince | >= v11.7.0 | -+------------------+-----------------+ -| Redwood | >= v11.7.0 | -+------------------+-----------------+ ++------------------+-------------------------+ +| Open edX Release | Version | ++==================+=========================+ +| Ironwood | < 3.0 | ++------------------+-------------------------+ +| Juniper | >= 3.0 < 4.0 | ++------------------+-------------------------+ +| Koa | >= 4.0 <= 5.1.3 | ++------------------+-------------------------+ +| Lilac | >= 4.0 < 6.2 | ++------------------+-------------------------+ +| Maple | >= 6.0 < 12.0 | ++------------------+-------------------------+ +| Nutmeg | >= 6.2 < 12.0 | ++------------------+-------------------------+ +| Olive | >= 8.0 < 12.0 | ++------------------+-------------------------+ +| Palm | >= v11.7.0 < 12.0 | ++------------------+-------------------------+ +| Quince | >= v11.7.0 | ++------------------+-------------------------+ +| Redwood | >= v11.7.0 | ++------------------+-------------------------+ ⚠️ Since the 6.2 version, eox-tenant does not support Django 2.2 diff --git a/eox_tenant/__init__.py b/eox_tenant/__init__.py index 4faa7681..3a51f942 100644 --- a/eox_tenant/__init__.py +++ b/eox_tenant/__init__.py @@ -1,4 +1,4 @@ """ Init for eox-tenant. """ -__version__ = '11.7.0' +__version__ = '12.0.0' diff --git a/setup.cfg b/setup.cfg index ea59a22a..2b14c5d7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 11.7.0 +current_version = 12.0.0 commit = False tag = False