Skip to content

Commit

Permalink
v2.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Chen-Wang committed Mar 23, 2021
1 parent ac814e5 commit f02b7f5
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .coveragerc
@@ -0,0 +1,2 @@
[run]
omit = */tests/*
1 change: 1 addition & 0 deletions CHANGELOG.rst
Expand Up @@ -5,6 +5,7 @@ What’s new in django-cachalot?
-----

- Fix bug with externally invalidated cache keys (#120)
- Omit test files in coverage

2.3.3
-----
Expand Down
4 changes: 2 additions & 2 deletions cachalot/__init__.py
@@ -1,4 +1,4 @@
VERSION = (2, 3, 3)
VERSION = (2, 3, 4)
__version__ = '.'.join(map(str, VERSION))

default_app_config = 'cachalot.apps.CachalotConfig'
default_app_config = "cachalot.apps.CachalotConfig"
4 changes: 1 addition & 3 deletions cachalot/api.py
Expand Up @@ -139,9 +139,7 @@ def cachalot_disabled(all_queries=False):
Context manager for temporarily disabling cachalot.
If you evaluate the same queryset a second time,
like normally for Django querysets, this will access
the variable that saved it in-memory.
For example:
the variable that saved it in-memory. For example:
.. code-block:: python
Expand Down

0 comments on commit f02b7f5

Please sign in to comment.