summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/build/changelog.rst18
-rw-r--r--docs/build/conf.py2
-rw-r--r--docs/build/unreleased/220.rst6
-rw-r--r--docs/build/unreleased/221.rst8
4 files changed, 18 insertions, 16 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index 55b4271..6b62be3 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -4,7 +4,23 @@ Changelog
.. changelog::
:version: 1.1.6
- :include_notes_from: unreleased
+ :released: Fri Jun 10 2022
+
+ .. change::
+ :tags: bug, redis
+ :tickets: 220
+
+ Fixed regression caused by backwards-incompatible API changes in Redis that
+ caused the "distributed lock" feature to not function.
+
+ .. change::
+ :tags: usecase, redis
+ :tickets: 221
+
+ Added :paramref:`.RedisBackend.connection_kwargs` parameter, which is a
+ dictionary of additional keyword arguments that will be passed directly to
+ ``StrictRedis()`` or ``StrictRedis.from_url()``, in the same way that this
+ parameter works with the :class:`.RedisSentinelBackend` already.
.. changelog::
:version: 1.1.5
diff --git a/docs/build/conf.py b/docs/build/conf.py
index 9bcc6a0..b2d0ca2 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -74,7 +74,7 @@ copyright = "2011-2022 Mike Bayer"
# The short X.Y version.
version = dogpile.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.1.5"
+release = "1.1.6"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/220.rst b/docs/build/unreleased/220.rst
deleted file mode 100644
index 0d46c6b..0000000
--- a/docs/build/unreleased/220.rst
+++ /dev/null
@@ -1,6 +0,0 @@
-.. change::
- :tags: bug, redis
- :tickets: 220
-
- Fixed regression caused by backwards-incompatible API changes in Redis that
- caused the "distributed lock" feature to not function.
diff --git a/docs/build/unreleased/221.rst b/docs/build/unreleased/221.rst
deleted file mode 100644
index 9211abf..0000000
--- a/docs/build/unreleased/221.rst
+++ /dev/null
@@ -1,8 +0,0 @@
-.. change::
- :tags: usecase, redis
- :tickets: 221
-
- Added :paramref:`.RedisBackend.connection_kwargs` parameter, which is a
- dictionary of additional keyword arguments that will be passed directly to
- ``StrictRedis()`` or ``StrictRedis.from_url()``, in the same way that this
- parameter works with the :class:`.RedisSentinelBackend` already.