Skip to content

Commit

Permalink
Set version, fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve committed Jun 11, 2021
1 parent 5f101b2 commit d137435
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@
setup(
name="django-bootstrap5",
zip_safe=False,
version="2.0.0",
version="2.0.1",
description="Bootstrap 5 for Django",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
3 changes: 2 additions & 1 deletion tests/test_bootstrap_form.py
Expand Up @@ -34,7 +34,8 @@ def test_exclude(self):
(
'<div class="mb-3 django_bootstrap5-req">'
'<label class="form-label" for="id_required_text">Required text</label>'
'<input type="text" name="required_text" class="form-control" placeholder="Required text" required id="id_required_text">'
'<input type="text" name="required_text" class="form-control"'
' placeholder="Required text" required id="id_required_text">'
'<div class="form-text"><i>required_text_help</i>'
"</div>"
),
Expand Down

0 comments on commit d137435

Please sign in to comment.