From ccf7b8c03fa51c7a845265f66da88ca90ed95254 Mon Sep 17 00:00:00 2001 From: lericson Date: Mon, 7 Sep 2009 02:29:35 +0200 Subject: [PATCH] Prepare pylibmc 0.7. --- README.rst | 9 +++++++++ setup.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 79b89ea..ef6ab6d 100644 --- a/README.rst +++ b/README.rst @@ -64,6 +64,15 @@ use the proper ``-arch`` flag to ``gcc``, here's how you'd do it:: Change Log ========== +New in version 0.7 +------------------ + + - Restructured some of the code, which should yield better performance (if not + for that, it reads better.) + - Fixed some memory leaks. + - Integrated changes from `amix.dk`, which should make pylibmc work under + Snow Leopard. + New in version 0.6 ------------------ diff --git a/setup.py b/setup.py index 59fec54..c66efa3 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ pylibmc_ext = Extension("_pylibmc", ["_pylibmcmodule.c"], libraries=["memcached"], include_dirs=incdirs, library_dirs=libdirs) -setup(name="pylibmc", version="0.6.1", +setup(name="pylibmc", version="0.7", url="http://lericson.blogg.se/code/category/pylibmc.html", author="Ludvig Ericson", author_email="ludvig.ericson@gmail.com", license="3-clause BSD ",