[Checkins] SVN: transaction/trunk/ vb; add trove classifiers for python versions; adjust readme content; add version description to changes.txt

Chris McDonough chrism at plope.com
Mon Dec 5 20:57:47 UTC 2011


Log message for revision 123581:
  vb; add trove classifiers for python versions; adjust readme content; add version description to changes.txt

Changed:
  U   transaction/trunk/CHANGES.txt
  U   transaction/trunk/README.txt
  U   transaction/trunk/setup.py

-=-
Modified: transaction/trunk/CHANGES.txt
===================================================================
--- transaction/trunk/CHANGES.txt	2011-12-05 20:22:45 UTC (rev 123580)
+++ transaction/trunk/CHANGES.txt	2011-12-05 20:57:46 UTC (rev 123581)
@@ -1,11 +1,16 @@
 Changes
 =======
 
-Next release
-------------
+1.2.0 (unreleased)
+------------------
 
-- ...
+New Features:
 
+- Python 3.2 compatibility.
+
+- Dropped Python 2.4 and 2.5 compatibility (use 1.1.1 if you need to use
+  "transaction" under these Python versions).
+
 1.1.1 (2010-09-16)
 ------------------
 

Modified: transaction/trunk/README.txt
===================================================================
--- transaction/trunk/README.txt	2011-12-05 20:22:45 UTC (rev 123580)
+++ transaction/trunk/README.txt	2011-12-05 20:57:46 UTC (rev 123581)
@@ -3,7 +3,7 @@
 ============
 
 This package contains a generic transaction implementation for Python. It is
-mainly used by the ZODB, though.
+mainly used by the ZODB.
 
 See http://www.zodb.org/zodbbook/transactions.html for narrative
 documentation on its usage.

Modified: transaction/trunk/setup.py
===================================================================
--- transaction/trunk/setup.py	2011-12-05 20:22:45 UTC (rev 123580)
+++ transaction/trunk/setup.py	2011-12-05 20:57:46 UTC (rev 123581)
@@ -12,7 +12,7 @@
 #
 ##############################################################################
 
-__version__ = '0'
+__version__ = '1.2.0dev'
 
 import os
 
@@ -35,6 +35,12 @@
         "Topic :: Software Development :: Libraries :: Python Modules",
         "Operating System :: Microsoft :: Windows",
         "Operating System :: Unix",
+        "Programming Language :: Python",
+        "Programming Language :: Python :: 2.6",
+        "Programming Language :: Python :: 2.7",
+        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.2",
+        "Programming Language :: Python :: Implementation :: CPython",
         ],
       author="Zope Corporation",
       author_email="zodb-dev at zope.org",



More information about the checkins mailing list