Skip to content

Commit 2028b4c

Browse files
Prepare release 4.1.3
1 parent caf4b73 commit 2028b4c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ Also ships the latest jQuery compatible with Bootstrap, for optional inclusion.
1111
.. |latest-version| image:: https://img.shields.io/pypi/v/django-bootstrap-static.svg
1212
:alt: Latest version on PyPI
1313
:target: https://pypi.python.org/pypi/django-bootstrap-static
14-
.. |bootstrap| image:: https://img.shields.io/badge/Bootstrap-v4.1.1-563d7c.svg
15-
:alt: Bootstrap 4.1.1
14+
.. |bootstrap| image:: https://img.shields.io/badge/Bootstrap-v4.1.3-563d7c.svg
15+
:alt: Bootstrap 4.1.3
1616
:target: https://getbootstrap.com/
1717
.. |jquery| image:: https://img.shields.io/badge/jQuery-v3.3.1-0769ad.svg
1818
:alt: jQuery 3.3.1
1919
:target: https://jquery.com/
20-
.. |fontawesome| image:: https://img.shields.io/badge/Font_Awesome-v5.0.10-1c9a71.svg
21-
:alt: Font Awesome 5.0.10
20+
.. |fontawesome| image:: https://img.shields.io/badge/Font_Awesome-v5.6.3-1c9a71.svg
21+
:alt: Font Awesome 5.6.3
2222
:target: https://fontawesome.com/icons?m=free
2323

2424
Install
@@ -50,7 +50,7 @@ Then you can include CSS and JavaScript as usual static resources, e.g. using
5050
{% load static %}
5151
<head>
5252
<link rel="stylesheet" href="{% static 'bootstrap/css/bootstrap.min.css' %}">
53-
<script defer src="{% static 'fontawesome/js/fontawesome-all.min.js' %}"></script>
53+
<script defer src="{% static 'fontawesome/js/all.min.js' %}"></script>
5454
</head>
5555
<body>
5656
...
@@ -64,7 +64,7 @@ replacing the ``<script ...>`` tag in the ``<head>`` section above by:
6464

6565
.. code-block:: django
6666
67-
<link rel="stylesheet" href="{% static 'fontawesome/css/fontawesome-all.min.css' %}">
67+
<link rel="stylesheet" href="{% static 'fontawesome/css/all.min.css' %}">
6868
6969
If you don't use Bootstrap features that require ``Popper.js`` (e.g. dropdowns,
7070
popovers, tooltips) you can include ``bootstrap.min.js`` instead of the bundle

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
version = '4.1.1'
3+
version = '4.1.3'
44

55
setup(name='django-bootstrap-static',
66
version=version,

0 commit comments

Comments
 (0)