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
2 changes: 1 addition & 1 deletion django_comments_xtd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_form():
return import_string(settings.COMMENTS_XTD_FORM_CLASS)


VERSION = (2, 10, 10, "f", 0) # following PEP 440
VERSION = (2, 10, 11, "f", 0) # following PEP 440


def get_version():
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# The short X.Y version.
version = '2.10'
# The full version, including alpha/beta/rc tags.
release = '2.10.10'
release = '2.10.11'

releases = [
"latest",
Expand Down
4 changes: 2 additions & 2 deletions docs/javascript.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ Which results in:
│ ├── commentform.test.jsx
│ ├── reducer.test.jsx
│ └── lib.test.js
├── django-comments-xtd-2.10.10.js
└── django-comments-xtd-2.10.10.min.js
├── django-comments-xtd-2.10.11.js
└── django-comments-xtd-2.10.11.min.js

The application entry point is located inside the ``index.js`` file. The
``props`` passed to the **CommentBox** object are those declared in the
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1192,7 +1192,7 @@ Be sure your ``blog/post_detail.html`` looks like the following:
<script
type="text/javascript"
src="{% url 'javascript-catalog' %}"></script>
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.10.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.11.js' %}"></script>
<script>
window.addEventListener('DOMContentLoaded', (_) => {
const tooltipQs = '[data-bs-toggle="tooltip"]';
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "django-comments-xtd-plugins",
"version": "2.10.10",
"version": "2.10.11",
"description": "Provides django-comments-xtd reactjs plugin",
"main": "app.js",
"scripts": {
Expand Down