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
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Unreleased
----------
* nothing unreleased

[6.8.1] - 2026-03-25
---------------------
* fix: also register enterprise and consent as CMS plugins (ENT-11663)

[6.8.0] - 2026-03-24
---------------------
* feat: register enterprise and consent as openedx LMS plugins (ENT-11663)
Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Your project description goes here.
"""

__version__ = "6.8.0"
__version__ = "6.8.1"
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ def get_requirements(requirements_file):
"enterprise = enterprise.apps:EnterpriseConfig",
"consent = consent.apps:ConsentConfig",
],
"cms.djangoapp": [
"enterprise = enterprise.apps:EnterpriseConfig",
"consent = consent.apps:ConsentConfig",
],
},
description="""Your project description goes here""",
long_description=f"{README}\n\n{CHANGELOG}",
Expand Down
Loading