Skip to content

Commit a08bf81

Browse files
committed
Bump version to 3.1.0
1 parent ea45793 commit a08bf81

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

diskcache/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929

3030

3131
__title__ = 'diskcache'
32-
__version__ = '3.0.6'
33-
__build__ = 0x030006
32+
__version__ = '3.1.0'
33+
__build__ = 0x030100
3434
__author__ = 'Grant Jenks'
3535
__license__ = 'Apache 2.0'
3636
__copyright__ = 'Copyright 2016-2018 Grant Jenks'

docs/tutorial.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ in a `with` statement to safeguard calling :meth:`close
8787
>>> cache.close()
8888
>>> with Cache('/tmp/mycachedir') as reference:
8989
... pass
90-
91-
Closed Cache objects will automatically re-open when accessed. But opening Cache
92-
objects is relatively slow, and since all operations are atomic, you can safely
93-
leave Cache objects open.
90+
91+
Closed Cache objects will automatically re-open when accessed. But opening
92+
Cache objects is relatively slow, and since all operations are atomic, you can
93+
safely leave Cache objects open.
9494

9595
>>> cache.set(b'key') = b'value'
9696
>>> cache.close()

0 commit comments

Comments
 (0)