Skip to content

Commit 611cf31

Browse files
committed
Bump version number
1 parent 6ae82c4 commit 611cf31

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

django_comments_xtd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_form():
1717
return import_string(settings.COMMENTS_XTD_FORM_CLASS)
1818

1919

20-
VERSION = (2, 10, 10, "f", 0) # following PEP 440
20+
VERSION = (2, 10, 11, "f", 0) # following PEP 440
2121

2222

2323
def get_version():

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
# The short X.Y version.
6868
version = '2.10'
6969
# The full version, including alpha/beta/rc tags.
70-
release = '2.10.10'
70+
release = '2.10.11'
7171

7272
releases = [
7373
"latest",

docs/javascript.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ Which results in:
131131
│ ├── commentform.test.jsx
132132
│ ├── reducer.test.jsx
133133
│ └── lib.test.js
134-
├── django-comments-xtd-2.10.10.js
135-
└── django-comments-xtd-2.10.10.min.js
134+
├── django-comments-xtd-2.10.11.js
135+
└── django-comments-xtd-2.10.11.min.js
136136
137137
The application entry point is located inside the ``index.js`` file. The
138138
``props`` passed to the **CommentBox** object are those declared in the

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1192,7 +1192,7 @@ Be sure your ``blog/post_detail.html`` looks like the following:
11921192
<script
11931193
type="text/javascript"
11941194
src="{% url 'javascript-catalog' %}"></script>
1195-
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.10.js' %}"></script>
1195+
<script src="{% static 'django_comments_xtd/js/django-comments-xtd-2.10.11.js' %}"></script>
11961196
<script>
11971197
window.addEventListener('DOMContentLoaded', (_) => {
11981198
const tooltipQs = '[data-bs-toggle="tooltip"]';

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "django-comments-xtd-plugins",
3-
"version": "2.10.10",
3+
"version": "2.10.11",
44
"description": "Provides django-comments-xtd reactjs plugin",
55
"main": "app.js",
66
"scripts": {

0 commit comments

Comments
 (0)