diff --git a/CHANGES b/CHANGES index 48661fe..71d6605 100755 --- a/CHANGES +++ b/CHANGES @@ -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) diff --git a/rangefilter/__init__.py b/rangefilter/__init__.py index 3447d16..7c30ed0 100644 --- a/rangefilter/__init__.py +++ b/rangefilter/__init__.py @@ -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' diff --git a/rangefilter/tests.py b/rangefilter/tests.py index 19982b5..7395c33 100644 --- a/rangefilter/tests.py +++ b/rangefilter/tests.py @@ -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')