diff --git a/cachecontrol/__init__.py b/cachecontrol/__init__.py index abbf8c0..82646f3 100644 --- a/cachecontrol/__init__.py +++ b/cachecontrol/__init__.py @@ -8,7 +8,7 @@ """ __author__ = "Eric Larson" __email__ = "eric@ionrock.org" -__version__ = "0.13.1" +__version__ = "0.14.0" from cachecontrol.adapter import CacheControlAdapter from cachecontrol.controller import CacheController diff --git a/docs/release_notes.rst b/docs/release_notes.rst index 749f374..0d74f88 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -7,6 +7,13 @@ Release Notes =============== +0.14.0 +====== + +* Explicitly allow ``pathlib.Path`` as a type for ``FileCache.directory``. +* Drop support for Python 3.7. Python 3.8 is now the minimum version. +* Don't use the cache to return a full response if a request has a Range header. + 0.13.1 ======