Cleanup and changelog for 2.0.1

This commit is contained in:
Gavin Wahl 2015-04-23 14:36:14 -06:00
parent 9093679d35
commit 535cc665fb
2 changed files with 4 additions and 3 deletions

View File

@ -2,10 +2,11 @@ CHANGELOG
---------
2.1.0 (unreleased)
2.0.1 (unreleased)
==================
- Nothing changed yet.
- Explicitly depend on pathlib, instead of assuming pyScss will require it. [#33]
- Fixed cases where DEBUG is False but collectstatic hasn't been run (common in tests).
2.0.0 (2015-04-22)

View File

@ -103,7 +103,7 @@ class FindersImportTest(ImportTestMixin, NoCollectStaticTestCase):
pass
# Emulate the condition were collectstatic was run but the source files are no
# Emulate the condition where collectstatic was run but the source files are no
# longer available.
@mock.patch('django_pyscss.utils.get_file_from_finders',
new=mock.MagicMock(return_value=(None, None)))