From 193e72485b84e34535c9faaeb37e52d077e1e370 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Tue, 7 Jan 2025 10:42:44 -0500 Subject: [PATCH] chore: prep 0.14.2 Signed-off-by: William Woodruff --- cachecontrol/__init__.py | 2 +- docs/release_notes.rst | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/cachecontrol/__init__.py b/cachecontrol/__init__.py index 0d0cd590..5493afad 100644 --- a/cachecontrol/__init__.py +++ b/cachecontrol/__init__.py @@ -9,7 +9,7 @@ __author__ = "Eric Larson" __email__ = "eric@ionrock.org" -__version__ = "0.14.1" +__version__ = "0.14.2" from cachecontrol.adapter import CacheControlAdapter from cachecontrol.controller import CacheController diff --git a/docs/release_notes.rst b/docs/release_notes.rst index d78100f0..3b63b5ee 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -7,6 +7,12 @@ Release Notes =============== +0.14.2 +====== + +* Eliminate a race condition when overwriting cache entries. +* Fix a ``requests`` object leak when doing caching on a streamed response + 0.14.1 ======