File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 3
3
History
4
4
=======
5
5
6
+ 2.0.1
7
+ =====
8
+
9
+ * Add subclass of ManifestStaticFilesStorage. Thank to @jhpinson
10
+ * Change the documentation to use PipelineManifestStorage in configuration
11
+ instead of PipelineCachedStorage now deprecated.
12
+ * Change import MutableMapping from collections.abc. Thank to @colons
13
+
6
14
2.0.0
7
15
=====
8
16
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Installation
17
17
18
18
3. Use a pipeline storage for ``STATICFILES_STORAGE `` ::
19
19
20
- STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage '
20
+ STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage '
21
21
22
22
4. Add the ``PipelineFinder `` to ``STATICFILES_FINDERS `` ::
23
23
Original file line number Diff line number Diff line change 1
1
import os
2
- from collections import MutableMapping
2
+ from collections . abc import MutableMapping
3
3
import shlex
4
4
5
5
from django .conf import settings as _settings
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'django-pipeline' ,
9
- version = '2.0.0 ' ,
9
+ version = '2.0.1 ' ,
10
10
description = 'Pipeline is an asset packaging library for Django.' ,
11
11
long_description = io .open ('README.rst' , encoding = 'utf-8' ).read () + '\n \n ' +
12
12
io .open ('HISTORY.rst' , encoding = 'utf-8' ).read (),
You can’t perform that action at this time.
0 commit comments