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 ",