Skip to content

Commit

Permalink
Prepare release 4.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Jan 27, 2019
1 parent caf4b73 commit 2028b4c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ Also ships the latest jQuery compatible with Bootstrap, for optional inclusion.
.. |latest-version| image:: https://img.shields.io/pypi/v/django-bootstrap-static.svg
:alt: Latest version on PyPI
:target: https://pypi.python.org/pypi/django-bootstrap-static
.. |bootstrap| image:: https://img.shields.io/badge/Bootstrap-v4.1.1-563d7c.svg
:alt: Bootstrap 4.1.1
.. |bootstrap| image:: https://img.shields.io/badge/Bootstrap-v4.1.3-563d7c.svg
:alt: Bootstrap 4.1.3
:target: https://getbootstrap.com/
.. |jquery| image:: https://img.shields.io/badge/jQuery-v3.3.1-0769ad.svg
:alt: jQuery 3.3.1
:target: https://jquery.com/
.. |fontawesome| image:: https://img.shields.io/badge/Font_Awesome-v5.0.10-1c9a71.svg
:alt: Font Awesome 5.0.10
.. |fontawesome| image:: https://img.shields.io/badge/Font_Awesome-v5.6.3-1c9a71.svg
:alt: Font Awesome 5.6.3
:target: https://fontawesome.com/icons?m=free

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

.. code-block:: django
<link rel="stylesheet" href="{% static 'fontawesome/css/fontawesome-all.min.css' %}">
<link rel="stylesheet" href="{% static 'fontawesome/css/all.min.css' %}">
If you don't use Bootstrap features that require ``Popper.js`` (e.g. dropdowns,
popovers, tooltips) you can include ``bootstrap.min.js`` instead of the bundle
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = '4.1.1'
version = '4.1.3'

setup(name='django-bootstrap-static',
version=version,
Expand Down

0 comments on commit 2028b4c

Please sign in to comment.