summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Wahl <gwahl@fusionbox.com>2015-04-23 14:36:14 -0600
committerGavin Wahl <gwahl@fusionbox.com>2015-04-23 14:36:14 -0600
commit535cc665fb1853f02e31dec49d3f1fc87f245524 (patch)
tree956c1e3d460d06fe8708f3343c159c6023409ada
parent9093679d3552db9f7360f0841d9d34cf97ef1ae0 (diff)
downloaddjango-pyscss-535cc665fb1853f02e31dec49d3f1fc87f245524.tar.gz
Cleanup and changelog for 2.0.1
-rw-r--r--CHANGELOG.rst5
-rw-r--r--tests/test_scss.py2
2 files changed, 4 insertions, 3 deletions
diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 4f27c3c..686c20a 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -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)
diff --git a/tests/test_scss.py b/tests/test_scss.py
index 21bcdc8..260c8d7 100644
--- a/tests/test_scss.py
+++ b/tests/test_scss.py
@@ -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)))