Skip to content

Commit c2669b4

Browse files
authored
Merge pull request #371 from danirus/rel-2.9.6
Release 2.9.6, fixes issue #370
2 parents 1ef73ba + c5bb7a9 commit c2669b4

File tree

11 files changed

+25
-17
lines changed

11 files changed

+25
-17
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [2.9.6] - 2022-04-07
4+
5+
* Update version required for django-comments from 2.1 to 2.2.
6+
37
## [2.9.5] - 2021-12-13
48

59
* Adds compatibility with Django v4.

django_comments_xtd/__init__.py

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

2020

21-
VERSION = (2, 9, 5, 'f', 0) # following PEP 440
21+
VERSION = (2, 9, 6, 'f', 0) # following PEP 440
2222

2323

2424
def get_version():

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
# General information about the project.
5050
project = u'django-comments-xtd'
51-
copyright = u'2021, Daniela Rus Morales'
51+
copyright = u'2022, Daniela Rus Morales'
5252

5353
# The version info for the project you're documenting, acts as replacement for
5454
# |version| and |release|, also used in various other places throughout the
@@ -58,7 +58,7 @@
5858
# The short X.Y version.
5959
version = '2.9'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '2.9.5'
61+
release = '2.9.6'
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

docs/index.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ specific features, or check out the use cases to see how others customize it.
9696
Change Log
9797
==========
9898

99+
## [2.9.6] - 2022-04-07
100+
101+
* Update version required for django-comments from 2.1 to 2.2.
102+
99103
## [2.9.5] - 2021-12-14
100104

101105
* Adds compatibility with Django v4.

docs/javascript.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ Django will fetch them from there when rendering the article's detail page:
133133

134134
{% block extra-js %}
135135
[...]
136-
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.9.4.js' %}"></script>
137-
<script src="{% static 'django_comments_xtd/js/plugin-2.9.4.js' %}"></script>
136+
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.9.6.js' %}"></script>
137+
<script src="{% static 'django_comments_xtd/js/plugin-2.9.6.js' %}"></script>
138138
{% endblock extra-js %}
139139

140140

@@ -155,8 +155,8 @@ Plugin sources live inside the **static** directory of django-comments-xtd:
155155
│   ├── commentform.jsx
156156
│   ├── index.js
157157
│   └── lib.js
158-
├── vendor~plugin-2.9.5.js
159-
└── plugin-2.9.5.js
158+
├── vendor~plugin-2.9.6.js
159+
└── plugin-2.9.6.js
160160
161161
1 directory, 7 files
162162

docs/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1136,8 +1136,8 @@ Now let's edit ``blog/post_detail.html`` and make it look as follows:
11361136
<script
11371137
type="text/javascript"
11381138
src="{% url 'javascript-catalog' %}"></script>
1139-
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.9.5.js' %}"></script>
1140-
<script src="{% static 'django_comments_xtd/js/plugin-2.9.5.js' %}"></script>
1139+
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.9.6.js' %}"></script>
1140+
<script src="{% static 'django_comments_xtd/js/plugin-2.9.6.js' %}"></script>
11411141
<script>
11421142
$(function() {
11431143
$('[data-toggle="tooltip"]').tooltip({html: true});

example/comp/templates/articles/article_detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ <h2>{{ object.title }}</h2>
5656
polling_interval: 5000
5757
};
5858
</script>
59-
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.9.5.js' %}"></script>
60-
<script src="{% static 'django_comments_xtd/js/plugin-2.9.5.js' %}"></script>
59+
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.9.6.js' %}"></script>
60+
<script src="{% static 'django_comments_xtd/js/plugin-2.9.6.js' %}"></script>
6161
{% endblock %}

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tool.poetry]
22
name = "django-comments-xtd"
3-
version = "2.9.5"
3+
version = "2.9.6"
44
description = "Django Comments Framework extension app with thread support, follow up notifications and email confirmations."
55
authors = ["Daniela Rus Morales <[email protected]>"]
66

77
[tool.poetry.dependencies]
88
python = "^3"
99
Django = "^4"
10-
django-contrib-comments = "^2.1"
10+
django-contrib-comments = "^2.2"
1111
djangorestframework = "^3.13"
1212
six = "^1.16"
1313
docutils = "^0.17"

requirements.pip

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Django>=3,<5
2-
django-contrib-comments>=2.1,<2.2
2+
django-contrib-comments>=2.2,<2.3
33
djangorestframework>=3.13,<3.14
44
django-markdown2>=0.3,<0.4
55
docutils>=0.17,<0.18

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def run_tests(*args):
1818

1919
setup(
2020
name="django-comments-xtd",
21-
version="2.9.5",
21+
version="2.9.6",
2222
packages=find_packages(),
2323
include_package_data=True,
2424
license="MIT",
@@ -36,7 +36,7 @@ def run_tests(*args):
3636
url="http://pypi.python.org/pypi/django-comments-xtd",
3737
install_requires=[
3838
'Django>=3,<5',
39-
'django-contrib-comments>=2.1,<2.2',
39+
'django-contrib-comments>=2.2,<2.3',
4040
'djangorestframework>=3.12,<3.14',
4141
'docutils',
4242
'six',

0 commit comments

Comments
 (0)