Prepare pylibmc 0.7.
This commit is contained in:
parent
2c4d9acb3b
commit
5938b30716
@ -64,6 +64,15 @@ use the proper ``-arch`` flag to ``gcc``, here's how you'd do it::
|
|||||||
Change Log
|
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
|
New in version 0.6
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ pylibmc_ext = Extension("_pylibmc", ["_pylibmcmodule.c"],
|
|||||||
libraries=["memcached"],
|
libraries=["memcached"],
|
||||||
include_dirs=incdirs, library_dirs=libdirs)
|
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",
|
url="http://lericson.blogg.se/code/category/pylibmc.html",
|
||||||
author="Ludvig Ericson", author_email="ludvig.ericson@gmail.com",
|
author="Ludvig Ericson", author_email="ludvig.ericson@gmail.com",
|
||||||
license="3-clause BSD <http://www.opensource.org/licenses/bsd-license.php>",
|
license="3-clause BSD <http://www.opensource.org/licenses/bsd-license.php>",
|
||||||
|
Reference in New Issue
Block a user