summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2023-04-26 11:47:49 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2023-04-26 11:47:49 -0400
commita9e7e9d074fd8a9e56331aea959dfee717e3f96a (patch)
treea7dba5fc75d8098cdfc9d97fb7aa152572919e2f
parente3187d80896078fdd03377a374978f42e8ad28ec (diff)
downloaddogpile-cache-a9e7e9d074fd8a9e56331aea959dfee717e3f96a.tar.gz
- 1.2.0rel_1_2_0
-rw-r--r--docs/build/changelog.rst14
-rw-r--r--docs/build/conf.py2
-rw-r--r--docs/build/unreleased/236.rst11
3 files changed, 14 insertions, 13 deletions
diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst
index c210ba3..7bd01b3 100644
--- a/docs/build/changelog.rst
+++ b/docs/build/changelog.rst
@@ -4,7 +4,19 @@ Changelog
.. changelog::
:version: 1.2.0
- :include_notes_from: unreleased
+ :released: Wed Apr 26 2023
+
+ .. change::
+ :tags: feature, region
+ :tickets: 236
+
+ Added new construct :class:`.api.CantDeserializeException` which can be
+ raised by user-defined deserializer functions which would be passed to
+ :paramref:`.CacheRegion.deserializer`, to indicate a cache value that can't
+ be deserialized and therefore should be regenerated. This can allow an
+ application that's been updated to gracefully re-cache old items that were
+ persisted from a previous version of the application. Pull request courtesy
+ Simon Hewitt.
.. changelog::
:version: 1.1.8
diff --git a/docs/build/conf.py b/docs/build/conf.py
index b3b5b01..c237074 100644
--- a/docs/build/conf.py
+++ b/docs/build/conf.py
@@ -74,7 +74,7 @@ copyright = "2011-2023 Mike Bayer"
# The short X.Y version.
version = dogpile.__version__
# The full version, including alpha/beta/rc tags.
-release = "1.1.8"
+release = "1.2.0"
# The language for content autogenerated by Sphinx. Refer to documentation
diff --git a/docs/build/unreleased/236.rst b/docs/build/unreleased/236.rst
deleted file mode 100644
index ebd06bd..0000000
--- a/docs/build/unreleased/236.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-.. change::
- :tags: feature, region
- :tickets: 236
-
- Added new construct :class:`.api.CantDeserializeException` which can be
- raised by user-defined deserializer functions which would be passed to
- :paramref:`.CacheRegion.deserializer`, to indicate a cache value that can't
- be deserialized and therefore should be regenerated. This can allow an
- application that's been updated to gracefully re-cache old items that were
- persisted from a previous version of the application. Pull request courtesy
- Simon Hewitt.