Skip to content

Commit 873bb08

Browse files
committed
Merge branch 'release/4.9.1'
2 parents 2d8f1e4 + 7a5a2dd commit 873bb08

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ History
44
-------
55

66

7+
4.9.1 (2014-08-10)
8+
++++++++++++++++++
9+
10+
* Fixed test for Django 1.4
11+
12+
713
4.9.0 (2014-08-09)
814
++++++++++++++++++
915

bootstrap3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22

3-
__version__ = '4.9.0'
3+
__version__ = '4.9.1'

bootstrap3/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,4 +347,4 @@ def test_button(self):
347347
res = render_template("{% bootstrap_button 'button' size='lg' %}")
348348
self.assertEqual(res.strip(), '<button class="btn btn-lg">button</button>')
349349
res = render_template("{% bootstrap_button 'button' size='lg' href='#' %}")
350-
self.assertEqual(res.strip(), '<a class="btn btn-lg" href="#">button</a>')
350+
self.assertIn(res.strip(), '<a class="btn btn-lg" href="#">button</a><a href="#" class="btn btn-lg">button</a>')

0 commit comments

Comments
 (0)