Skip to content

Commit 83b9de6

Browse files
TheBukyTheBuky
authored andcommitted
Doc: PipelineManifestStorage and MutableMapping import
1 parent 93af11f commit 83b9de6

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
History
44
=======
55

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+
614
2.0.0
715
=====
816

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Installation
1717

1818
3. Use a pipeline storage for ``STATICFILES_STORAGE`` ::
1919

20-
STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
20+
STATICFILES_STORAGE = 'pipeline.storage.PipelineManifestStorage'
2121

2222
4. Add the ``PipelineFinder`` to ``STATICFILES_FINDERS`` ::
2323

pipeline/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import os
2-
from collections import MutableMapping
2+
from collections.abc import MutableMapping
33
import shlex
44

55
from django.conf import settings as _settings

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='django-pipeline',
9-
version='2.0.0',
9+
version='2.0.1',
1010
description='Pipeline is an asset packaging library for Django.',
1111
long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
1212
io.open('HISTORY.rst', encoding='utf-8').read(),

0 commit comments

Comments
 (0)