diff --git a/Changelog.md b/Changelog.md index 2243ffcd4..d6339328e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ Drag and Drop XBlock changelog Unreleased --------------------------- +Version 3.2.1 (2023-10-12) +--------------------------- + +* Added support for Django 4.2 * The command `make extract_translations` now uses `msgcat` instead of `tail` to combine `djangojs-partial.po` into `django.po`. This is to avoid the possibility of having message compilation failure because of duplicate strings (strings shared between both files) diff --git a/drag_and_drop_v2/__init__.py b/drag_and_drop_v2/__init__.py index 39dfa10aa..0db77497d 100644 --- a/drag_and_drop_v2/__init__.py +++ b/drag_and_drop_v2/__init__.py @@ -1,4 +1,4 @@ """ Drag and Drop v2 XBlock """ from .drag_and_drop_v2 import DragAndDropBlock -__version__ = "3.2.0" +__version__ = "3.2.1" diff --git a/setup.py b/setup.py index 5298bd2b0..c4ea4b4ed 100644 --- a/setup.py +++ b/setup.py @@ -115,6 +115,13 @@ def package_data(pkg, root_list): description='XBlock - Drag-and-Drop v2', long_description=README + '\n\n' + CHANGELOG, long_description_content_type='text/markdown', + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 3.8', + 'Framework :: Django', + 'Framework :: Django :: 3.2', + 'Framework :: Django :: 4.2', + ], url='https://github.com/openedx/xblock-drag-and-drop-v2', install_requires=load_requirements('requirements/base.in'), entry_points={