Prepare 0.3.11

This commit is contained in:
Dmitriy Sokolov 2019-01-30 14:56:28 +03:00
parent af1a205147
commit 66c1186d22
No known key found for this signature in database
GPG Key ID: DE2C98901898AB74
3 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,6 @@
0.3.11 (2019-01-30)
- Avoid loading admin_static in templates under Django>=1.10 (#27)
0.3.10 (2018-12-05)
- Fix calendar position on mobile (#23)

View File

@ -4,7 +4,7 @@ from __future__ import unicode_literals
__author__ = 'Dmitriy Sokolov'
__version__ = '0.3.10'
__version__ = '0.3.11'
default_app_config = 'rangefilter.apps.RangeFilterConfig'

View File

@ -278,7 +278,7 @@ class DateTimeRangeFilterTestCase(TestCase):
self.assertEqual(choice['system_name'], 'created-at')
class StaticOrAdminStaticTestCase(TestCase):
class TemplateTagsTestCase(TestCase):
@override_settings(STATIC_URL='/test/')
def test_returns_static_path_to_asset_when_staticfiles_app_is_not_installed(self):
self.assertEqual(static('path'), '/test/path')