[Checkins] SVN: ldappas/trunk/ Show changelog on Pypi

Kevin Teague kevin at bud.ca
Thu Feb 10 16:26:49 EST 2011


Log message for revision 120266:
  Show changelog on Pypi

Changed:
  U   ldappas/trunk/CHANGES.txt
  U   ldappas/trunk/setup.py

-=-
Modified: ldappas/trunk/CHANGES.txt
===================================================================
--- ldappas/trunk/CHANGES.txt	2011-02-10 20:27:34 UTC (rev 120265)
+++ ldappas/trunk/CHANGES.txt	2011-02-10 21:26:49 UTC (rev 120266)
@@ -1,12 +1,15 @@
-===============
-ldappas changes
-===============
+=======
+Changes
+=======
 
 0.8.3 (unreleased)
 ==================
 
-- Nothing changed yet.
+* Change conditional usage of ZCML registrations for views to use
+  'have' instead of 'installed' to account for consumers of zope.app.form
+   which aren't using the meta.zcml of that package.
 
+* Display this changelog on PyPI.
 
 0.8.2 (2011-01-25)
 ==================
@@ -45,9 +48,6 @@
 0.6 - 20.11.2006
 ================
 
-Features added
---------------
-
 * Fixed Zope 3.3 induced deprecation warnings.
 
 * principalInfo will try to look up a group if it cannot find a
@@ -55,9 +55,3 @@
   still the responsibility of the application to add LDAP-based groups
   to the principal (for instance by subscribing to the
   IAuthenticatedPrincipalCreated).
-
-
-Bugs fixed
-----------
-
-Nothing yet.

Modified: ldappas/trunk/setup.py
===================================================================
--- ldappas/trunk/setup.py	2011-02-10 20:27:34 UTC (rev 120265)
+++ ldappas/trunk/setup.py	2011-02-10 21:26:49 UTC (rev 120266)
@@ -4,6 +4,9 @@
     'zope.app.testing',
     ]
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(
     name='ldappas',
     version='0.8.3dev',
@@ -14,6 +17,9 @@
 LDAP-based authenticator for Zope 3. It uses ldapadapter to talk to an
 LDAP server.
 """,
+    long_description=(
+        read('CHANGES.txt')
+    ),
     packages=find_packages('src'),
     package_dir = {'': 'src'},
     include_package_data = True,



More information about the checkins mailing list