From 7fa029a12d96613a3be15a72c7c9fe772a6d5808 Mon Sep 17 00:00:00 2001 From: UsamaSadiq Date: Thu, 12 Oct 2023 18:27:12 +0500 Subject: [PATCH 1/2] chore: release new version --- Changelog.md | 4 ++++ drag_and_drop_v2/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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" From 2d1f28d529683e9af82d4597fe377ceb492db69f Mon Sep 17 00:00:00 2001 From: UsamaSadiq Date: Thu, 12 Oct 2023 18:32:40 +0500 Subject: [PATCH 2/2] docs: add pypi classifiers --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) 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={