preparing 1.0

This commit is contained in:
Tarek Ziade 2012-02-27 23:05:12 +01:00
parent b60da0949a
commit e8f0af539c
4 changed files with 21 additions and 3 deletions

View File

@ -1,6 +1,14 @@
Next release
------------
Releases
::::::::
1.0 - 2012-02-27
----------------
- Fix ``use_tls`` flag to ConnectionManager; it previously was always set
``False`` no matter what was passed.
0.9 - 2011-10-28
----------------
- initial release.

4
CONTRIBUTORS Normal file
View File

@ -0,0 +1,4 @@
By order of appearance:
- Tarek Ziadé <tarek@mozilla.com>
- Chris McDonough <chrism@plope.com>

View File

@ -1,2 +1,4 @@
include README.rst
include MANIFEST.in
include CHANGES.rst
include CONTRIBUTORS

View File

@ -40,11 +40,15 @@ with open('README.rst') as f:
README = f.read()
with open('CHANGES.rst') as f:
CHANGES = f.read()
setup(name='ldappool', version='0.9',
packages=['ldappool', 'ldappool.tests'],
author='Mozilla Services', author_email='services-dev@mozilla.org',
description="A connection pool for python-ldap",
long_description=README,
long_description=README + '\n' + CHANGES,
url='https://github.com/mozilla-services/ldappool',
keywords=['python-ldap', 'ldap', 'pool'],
license="MPL")