Skip to content

Commit

Permalink
Prepare release 2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danirus committed Aug 14, 2020
1 parent a6b8362 commit 630fb0e
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion django_comments_xtd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def get_form():
return import_string(settings.COMMENTS_XTD_FORM_CLASS)


VERSION = (2, 7, 0, 'f', 0) # following PEP 440
VERSION = (2, 7, 1, '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 @@ -58,7 +58,7 @@
# The short X.Y version.
version = '2.7'
# The full version, including alpha/beta/rc tags.
release = '2.7.0'
release = '2.7.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ the once official `Django Comments Framework

.. note::

This documentation represents the current version, v2.7.0, of
This documentation represents the current version, v2.7.1, of
django-comments-xtd. For old versions of the documentation:

* v2.6.2: https://django-comments-xtd.readthedocs.io/en/2.6.2/
Expand Down
8 changes: 4 additions & 4 deletions docs/javascript.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ Django will fetch them from there when rendering the article's detail page:

{% block extra-js %}
[...]
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.7.0.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/plugin-2.7.0.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.7.1.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/plugin-2.7.1.js' %}"></script>
{% endblock extra-js %}


Expand All @@ -155,8 +155,8 @@ Plugin sources live inside the **static** directory of django-comments-xtd:
│   ├── commentform.jsx
│   ├── index.js
│   └── lib.js
├── vendor~plugin-2.7.0.js
└── plugin-2.7.0.js
├── vendor~plugin-2.7.1.js
└── plugin-2.7.1.js
1 directory, 7 files
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1127,8 +1127,8 @@ Now let's edit ``blog/post_detail.html`` and make it look as follows:
<script
type="text/javascript"
src="{% url 'javascript-catalog' %}"></script>
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.7.0.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/plugin-2.7.0.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.7.1.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/plugin-2.7.1.js' %}"></script>
<script>
$(function() {
$('[data-toggle="tooltip"]').tooltip({html: true});
Expand Down
4 changes: 2 additions & 2 deletions example/comp/templates/articles/article_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ <h2>{{ object.title }}</h2>
polling_interval: 5000
};
</script>
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.7.0.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/plugin-2.7.0.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/vendor~plugin-2.7.1.js' %}"></script>
<script src="{% static 'django_comments_xtd/js/plugin-2.7.1.js' %}"></script>
{% endblock %}
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.7.0",
"version": "2.7.1",
"description": "Provides django-comments-xtd reactjs plugin",
"main": "app.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run_tests(*args):

setup(
name="django-comments-xtd",
version="2.7.0",
version="2.7.1",
packages=find_packages(),
include_package_data=True,
license="MIT",
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
plugin: path.resolve(SOURCE_DIR, 'index.js')
},
output: {
filename: '[name]-2.7.0.js',
filename: '[name]-2.7.1.js',
path: STATIC_DIR
},
optimization: {
Expand Down

0 comments on commit 630fb0e

Please sign in to comment.