summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook.git@proton.me>2022-10-26 13:30:04 -0500
committerJordan Cook <jordan.cook.git@proton.me>2022-10-26 13:43:06 -0500
commitfe4edbf0c85c92042fe156269811fc943bbef350 (patch)
tree4c167626c001e9c448cc7d53d6bb75beb14f0c2b
parentea25c2876db8b9c2a7caa5828354a7340d7ccf1a (diff)
downloadrequests-cache-0.9.7.tar.gz
Update changelogv0.9.7
-rw-r--r--HISTORY.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/HISTORY.md b/HISTORY.md
index b95ef2f..29ff3d6 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,20 +1,20 @@
# History
-## 0.9.7 (Unreleased)
-Backport fixes from 1.0:
-* Fix potential `AttributeError` due to undetected imports when requests-cache is bundled in a PyInstaller package
-* Fix `AttributeError` when attempting to unpickle a `CachedSession` object, and instead disable
- pickling by raising a `NotImplementedError`
-* Add support for header values as bytes for compatibility with OAuth1 features of `requests-oauthlib`
-* Update to cattrs 22.2
+## 0.9.7 (2022-10-26)
+Backport compatibility fixes from 1.0:
+* **PyInstaller:** Fix potential `AttributeError` due to undetected imports when requests-cache is bundled in a PyInstaller package
+* **requests-oauthlib:** Add support for header values as bytes for compatibility with OAuth1 features
+* **cattrs:** Add compatibility with cattrs 22.2
+* **python:** Add tests to ensure compatibility with python 3.11
+* Fix `AttributeError` when attempting to unpickle a `CachedSession` object, and instead disable pickling by raising a `NotImplementedError`
Add the following for forwards-compatibility with 1.0:
-* `requests_cache.policy` subpackage
+* `DeprecationWarnings` to give an earlier notice for methods deprecated (not removed) in 1.0
+* `requests_cache.policy` subpackage (will replace `requests_cache.cache_control` module)
* `BaseCache.contains()`
* `BaseCache.delete()`
* `BaseCache.filter()`
* `CachedSession.settings`
-* `DeprecationWarnings` to give an earlier notice for upcoming changes in 1.0
## 0.9.6 (2022-08-24)
Backport fixes from 1.0: