diff --git a/CHANGES.rst b/CHANGES.rst index eb0c935..dc461fc 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,9 +4,12 @@ CHANGES .. towncrier release notes start -0.8.0 (XXXX-XX-XX) +0.8.0 (2022-12-11) ================== - Add ``FlagClient`` to support memcached flags. +- Fix type annotations for ``@acquire``. +- Fix rare exception caused by memcached server dying in middle of operation. +- Fix get method to not use CAS. 0.7.0 (2022-01-20) ===================== diff --git a/aiomcache/__init__.py b/aiomcache/__init__.py index 559f00b..d006cf9 100644 --- a/aiomcache/__init__.py +++ b/aiomcache/__init__.py @@ -14,4 +14,4 @@ __all__ = ("Client", "ClientException", "FlagClient", "ValidationException") -__version__ = "0.7.0" +__version__ = "0.8.0"