Skip to content

Commit

Permalink
Merge pull request #358 from openedx/release-new-version
Browse files Browse the repository at this point in the history
chore: release new version
  • Loading branch information
UsamaSadiq committed Oct 12, 2023
2 parents 68ff0c8 + 2d1f28d commit 9708366
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion drag_and_drop_v2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Drag and Drop v2 XBlock """
from .drag_and_drop_v2 import DragAndDropBlock

__version__ = "3.2.0"
__version__ = "3.2.1"
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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={
Expand Down

0 comments on commit 9708366

Please sign in to comment.