Skip to content

Commit 9dc6eb9

Browse files
authored
Merge pull request #189 from jogo/2.0
Prepare for release of 2.0.0
2 parents f6ecb29 + d2c719f commit 9dc6eb9

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

ChangeLog.rst

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,39 @@
11
Change Log
22
==========
3-
New in draft
3+
New in version 2.0.0
44
--------------------
5-
* Change set_many and set_multi api return value. see [pr](https://github.com/pinterest/pymemcache/pull/179)
5+
* Change set_many and set_multi api return value. `PR#179 <https://github.com/pinterest/pymemcache/pull/179>`_
6+
* Fix support for newbytes from python-future. `PR#187 <https://github.com/pinterest/pymemcache/pull/187>`_
7+
* Add support for Python 3.7, and drop support for Python 3.3
8+
* Properly batch Client.set_many() call. `PR#182 <https://github.com/pinterest/pymemcache/pull/182>`_
9+
* Improve _check_key() and _store_cmd() performance. `PR#183 <https://github.com/pinterest/pymemcache/pull/183>`_
10+
* Properly batch Client.delete_many() call. `PR#184 <https://github.com/pinterest/pymemcache/pull/184>`_
11+
* Add option to explicitly set pickle version used by serde. `PR#190 <https://github.com/pinterest/pymemcache/pull/190>`_
612

713
New in version 1.4.4
814
--------------------
915
* pypy3 to travis test matrix
1016
* full benchmarks in test
1117
* fix flake8 issues
1218
* Have mockmemcacheclient support non-ascii strings
19+
* Switch from using pickle format 0 to the highest available version. See `PR#156 <https://github.com/pinterest/pymemcache/pull/156>`_
20+
21+
*Warning*: different versions of python have different highest pickle versions: https://docs.python.org/3/library/pickle.html
22+
1323

1424
New in version 1.4.3
1525
--------------------
1626
* Documentation improvements
17-
* Fixed cachedump stats command, see [ticket](https://github.com/pinterest/pymemcache/issues/103)
27+
* Fixed cachedump stats command, see `ticket <https://github.com/pinterest/pymemcache/issues/103>`_
1828
* Honor default_value in HashClient
1929

2030
New in version 1.4.2
2131
--------------------
22-
* Drop support for python 2.6, see [ticket](https://github.com/pinterest/pymemcache/issues/139)
32+
* Drop support for python 2.6, see `ticket <https://github.com/pinterest/pymemcache/issues/139>`_
2333

2434
New in version 1.4.1
2535
--------------------
26-
* Python 3 serializations [fixes](https://github.com/pinterest/pymemcache/pull/131)
36+
* Python 3 serializations `fixes <https://github.com/pinterest/pymemcache/pull/131>`_
2737
* Drop support for pypy3
2838
* Comment cleanup
2939
* Add gets_many to hash_client
@@ -82,4 +92,3 @@ New in version 1.3.0
8292
New in version 1.2.9
8393
--------------------
8494
* Introduced PooledClient a thread-safe pool of clients
85-

pymemcache/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.4.4'
1+
__version__ = '2.0.0'
22
__author__ = "Charles Gordon"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.4
2+
current_version = 2.0.0
33
commit = False
44
tag = True
55

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def read(fname):
2626
classifiers=[
2727
'Programming Language :: Python',
2828
'Programming Language :: Python :: 2.7',
29-
'Programming Language :: Python :: 3.3',
3029
'Programming Language :: Python :: 3.4',
3130
'Programming Language :: Python :: 3.5',
3231
'Programming Language :: Python :: 3.6',

0 commit comments

Comments
 (0)