summaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorJon Parise <jon@pinterest.com>2020-01-02 13:43:34 -0800
committerGitHub <noreply@github.com>2020-01-02 13:43:34 -0800
commit8ba31253566a8a92df5eaefba236289b7031fa8c (patch)
tree34a21ad0df3869ca3b4771dc4671ffa9cc46c95b /ChangeLog.rst
parent8c442de0dc0571a80ffed86fd46bdc931d15311c (diff)
downloadpymemcache-8ba31253566a8a92df5eaefba236289b7031fa8c.tar.gz
Start the version 3.0.0 release process (#265)v3.0.0
This code is in good shape for our next major release so this just updates the changelog and package version.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst20
1 files changed, 10 insertions, 10 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 69702d6..715e65a 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,20 +1,20 @@
Changelog
=========
-New in version 3.0.0 (unreleased)
----------------------------------
-
-* Validate integer inputs for ``expire``, ``delay``, ``incr``, ``decr``, and
- ``memlimit`` -- non-integer values now raise ``MemcacheIllegalInputError``
-
+New in version 3.0.0
+--------------------
* The serialization API has been reworked. Instead of consuming a serializer
and deserializer as separate arguments, client objects now expect an argument
- `serde` to be an object which implements `serialize` and `deserialize`
- as methods. (`serialize` and `deserialize` are still supported but considered
- deprecated)
-
+ ``serde`` to be an object which implements ``serialize`` and ``deserialize``
+ as methods. (``serialize`` and ``deserialize`` are still supported but
+ considered deprecated.)
+* Validate integer inputs for ``expire``, ``delay``, ``incr``, ``decr``, and
+ ``memlimit`` -- non-integer values now raise ``MemcacheIllegalInputError``
* Validate inputs for ``cas`` -- values which are not integers or strings of
0-9 now raise ``MemcacheIllegalInputError``
+* Add ``prepend`` and ``append`` support to ``MockMemcacheClient``.
+* Add the ``touch`` method to ``HashClient``.
+* Added official support for Python 3.8.
New in version 2.2.2
--------------------