Skip to content

Commit

Permalink
Prepare 0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
silentsokolov committed Jan 30, 2019
1 parent af1a205 commit 66c1186
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion rangefilter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


__author__ = 'Dmitriy Sokolov'
__version__ = '0.3.10'
__version__ = '0.3.11'


default_app_config = 'rangefilter.apps.RangeFilterConfig'
Expand Down
2 changes: 1 addition & 1 deletion rangefilter/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def test_datefilter_filtered_with_one_params(self):
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')
Expand Down

0 comments on commit 66c1186

Please sign in to comment.