summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2020-04-29 10:23:41 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2020-04-29 10:23:41 -0400
commit6a14c0d91e50fa20db9d5b16cad4c90fa4eb5012 (patch)
tree9b4b5d2c80de7d33864f3dd704c0e84cfcf6cc27
parentfe1c46226b0749262ac62784910cd45ff36e2aa0 (diff)
downloaddogpile-cache-6a14c0d91e50fa20db9d5b16cad4c90fa4eb5012.tar.gz
- 0.9.1rel_0_9_1
-rw-r--r--docs/build/changelog.rst25
-rw-r--r--docs/build/conf.py2
-rw-r--r--docs/build/unreleased/171.rst16
-rw-r--r--docs/build/unreleased/decorator.rst5
4 files changed, 25 insertions, 23 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index c307747..2ea6a2a 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -4,7 +4,30 @@ Changelog
.. changelog::
:version: 0.9.1
- :include_notes_from: unreleased
+ :released: Wed Apr 29 2020
+
+ .. change::
+ :tags: bug, tests
+
+ Added ``decorator`` module as a required testing dependency to
+ ``tox.ini`` so that tests work when this is not pre-installed.
+
+ .. change::
+ :tags: bug, redis
+ :tickets: 171
+
+ Added option to the Redis backend
+ :paramref:`.RedisBackend.thread_local_lock`, which when set to False will
+ disable the use of a threading local by the ``redis`` module in its
+ distributed lock service, which is known to interfere with the lock's
+ behavior when used in an "async" use case, within dogpile this would be
+ when using the :paramref:`.CacheRegion.async_creation_runner` feature. The
+ default is conservatively being left at True, but it's likely this should
+ be set to False in all cases, so a warning is emitted if this flag is not
+ set to False in conjunction with the distributed lock. Added an optional
+ argument to :class:`.RedisBackend` that specifies whether or not a
+ thread-local Redis lock should be used. This is the default, but it breaks
+ asynchronous runner compatibility.
.. changelog::
:version: 0.9.0
diff --git a/docs/build/conf.py b/docs/build/conf.py
index eba3332..e1469ab 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -74,7 +74,7 @@ copyright = u"2011-2020 Mike Bayer"
# The short X.Y version.
version = dogpile.__version__
# The full version, including alpha/beta/rc tags.
-release = "0.9.0"
+release = "0.9.1"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/171.rst b/docs/build/unreleased/171.rst
deleted file mode 100644
index 0601ff3..0000000
--- a/docs/build/unreleased/171.rst
+++ /dev/null
@@ -1,16 +0,0 @@
-.. change::
- :tags: bug, redis
- :tickets: 171
-
- Added option to the Redis backend
- :paramref:`.RedisBackend.thread_local_lock`, which when set to False will
- disable the use of a threading local by the ``redis`` module in its
- distributed lock service, which is known to interfere with the lock's
- behavior when used in an "async" use case, within dogpile this would be
- when using the :paramref:`.CacheRegion.async_creation_runner` feature. The
- default is conservatively being left at True, but it's likely this should
- be set to False in all cases, so a warning is emitted if this flag is not
- set to False in conjunction with the distributed lock. Added an optional
- argument to :class:`.RedisBackend` that specifies whether or not a
- thread-local Redis lock should be used. This is the default, but it breaks
- asynchronous runner compatibility.
diff --git a/docs/build/unreleased/decorator.rst b/docs/build/unreleased/decorator.rst
deleted file mode 100644
index 8ea4c16..0000000
--- a/docs/build/unreleased/decorator.rst
+++ /dev/null
@@ -1,5 +0,0 @@
-.. change::
- :tags: bug, tests
-
- Added ``decorator`` module as a required testing dependency to
- ``tox.ini`` so that tests work when this is not pre-installed.