diff --git a/docs/build/changelog.rst b/docs/build/changelog.rst index e16f04e..03fa00f 100644 --- a/docs/build/changelog.rst +++ b/docs/build/changelog.rst @@ -4,7 +4,17 @@ Changelog .. changelog:: :version: 0.9.0 - :include_notes_from: unreleased + :released: Mon Oct 28 2019 + + .. change:: + :tags: feature + + Added logging facililities into :class:`.CacheRegion`, to indicate key + events such as cache keys missing or regeneration of values. As these can + be very high volume log messages, ``logging.DEBUG`` is used as the log + level for the events. Pull request courtesy Stéphane Brunner. + + .. changelog:: :version: 0.8.0 diff --git a/docs/build/conf.py b/docs/build/conf.py index 492eaec..ceba664 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -74,7 +74,7 @@ # The short X.Y version. version = dogpile.__version__ # The full version, including alpha/beta/rc tags. -release = "0.8.0" +release = "0.9.0" # The language for content autogenerated by Sphinx. Refer to documentation diff --git a/docs/build/unreleased/logging.rst b/docs/build/unreleased/logging.rst deleted file mode 100644 index c70acb5..0000000 --- a/docs/build/unreleased/logging.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. change:: - :tags: feature - - Added logging facililities into :class:`.CacheRegion`, to indicate key - events such as cache keys missing or regeneration of values. As these can - be very high volume log messages, ``logging.DEBUG`` is used as the log - level for the events. Pull request courtesy Stéphane Brunner. - -