summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Cook <jordan.cook@pioneer.com>2021-04-14 09:59:52 -0500
committerJordan Cook <jordan.cook@pioneer.com>2021-04-14 10:36:56 -0500
commitd34114a2baff04b1717b6ffe3779edb6e03b07d2 (patch)
tree90e5b9b43cf1f0d1861ad19fefe3803bededb88d
parent01c0402dfbbd267a6268fb83464279a1df2411da (diff)
downloadrequests-cache-0.6.2.tar.gz
Explicitly include docs, tests, and examples in sdistv0.6.2
-rw-r--r--HISTORY.md5
-rw-r--r--MANIFEST.in4
-rw-r--r--requests_cache/__init__.py2
3 files changed, 9 insertions, 2 deletions
diff --git a/HISTORY.md b/HISTORY.md
index 22d27b1..1dd261e 100644
--- a/HISTORY.md
+++ b/HISTORY.md
@@ -1,6 +1,9 @@
# History
-## 0.6.1 (2021-04-13)
+### 0.6.2 (2021-04-14)
+* Explicitly include docs, tests, and examples in sdist
+
+### 0.6.1 (2021-04-13)
* Handle errors due to invalid responses in `BaseCache.urls`
* Add recently renamed `BaseCache.remove_old_entries()` back, as an alias with a DeprecationWarning
* Make parent dirs for new SQLite databases
diff --git a/MANIFEST.in b/MANIFEST.in
index 31bfd3b..4efd90f 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -3,3 +3,7 @@ include *.md
include *.yml
prune docs/_*
prune temp
+graft docs
+graft examples
+graft tests
+global-exclude *.py[co]
diff --git a/requests_cache/__init__.py b/requests_cache/__init__.py
index 68b3ab1..7758462 100644
--- a/requests_cache/__init__.py
+++ b/requests_cache/__init__.py
@@ -1,5 +1,5 @@
# flake8: noqa: E402,F401
-__version__ = '0.6.1'
+__version__ = '0.6.2'
try:
from .response import AnyResponse, CachedHTTPResponse, CachedResponse, ExpirationTime