Skip to content

Commit

Permalink
Start the version 3.0.0 release process (#265)
Browse files Browse the repository at this point in the history
This code is in good shape for our next major release so this just
updates the changelog and package version.
  • Loading branch information
jparise authored Jan 2, 2020
1 parent 8c442de commit 8ba3125
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -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
--------------------
Expand Down
2 changes: 1 addition & 1 deletion pymemcache/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '3.0.0-dev'
__version__ = '3.0.0'

from pymemcache.client.base import Client # noqa
from pymemcache.client.base import PooledClient # noqa
Expand Down

0 comments on commit 8ba3125

Please sign in to comment.