[Checkins] SVN: relstorage/trunk/ prep for 1.2.0b1 release

Shane Hathaway shane at hathawaymix.org
Tue May 5 23:17:45 EDT 2009


Log message for revision 99785:
  prep for 1.2.0b1 release
  

Changed:
  _U  relstorage/trunk/
  U   relstorage/trunk/CHANGES.txt
  U   relstorage/trunk/README.txt
  U   relstorage/trunk/setup.py

-=-

Property changes on: relstorage/trunk
___________________________________________________________________
Modified: svn:ignore
   - nbproject
develop-eggs
parts
.installed.cfg
coverage
bin
RelStorage.egg-info

   + nbproject
develop-eggs
parts
.installed.cfg
coverage
bin
RelStorage.egg-info
eggs
dist



Modified: relstorage/trunk/CHANGES.txt
===================================================================
--- relstorage/trunk/CHANGES.txt	2009-05-06 03:16:30 UTC (rev 99784)
+++ relstorage/trunk/CHANGES.txt	2009-05-06 03:17:45 UTC (rev 99785)
@@ -1,13 +1,19 @@
 
-Next Release
-------------
+Version 1.2.0b1 (2009-05-05)
+--------------------------
 
 - RelStorage now implements IMVCCStorage, making it compatible with
-  the upcoming ZODB 3.9 release.
+  ZODB 3.9.0b1 and above.
 
-- ...
+- Removed two-phase commit support from the PostgreSQL adapter. The
+  feature turned out to be unnecessary.
 
+- Added MySQL 5.1.34 and above to the list of supportable databases.
 
+- Fixed minor test failures under Windows. Windows is now a supportable
+  platform.
+
+
 Version 1.1.3 (2009-02-04)
 --------------------------
 

Modified: relstorage/trunk/README.txt
===================================================================
--- relstorage/trunk/README.txt	2009-05-06 03:16:30 UTC (rev 99784)
+++ relstorage/trunk/README.txt	2009-05-06 03:17:45 UTC (rev 99785)
@@ -1,8 +1,9 @@
 
-RelStorage is a storage implementation for ZODB that stores pickles in a
-relational database.  PostgreSQL 8.1 and above (via psycopg2), MySQL 5.0.x (via
-MySQLdb 1.2.2 and above), and Oracle 10g (via cx_Oracle) are currently
-supported.  RelStorage replaces the PGStorage project.
+RelStorage is a storage implementation for ZODB that stores pickles in
+a relational database. PostgreSQL 8.1 and above (via psycopg2), MySQL
+5.0.32+ / 5.1.34+ (via MySQLdb 1.2.2 and above), and Oracle 10g (via
+cx_Oracle) are currently supported. RelStorage replaces the PGStorage
+project.
 
 .. contents::
 
@@ -50,8 +51,7 @@
 Install psycopg2, MySQLdb 1.2.2+, or cx_Oracle 4.3+.  Note that Debian Etch
 ships MySQLdb 1.2.1, but that version has a bug in BLOB handling that manifests
 itself only with certain character set configurations.  MySQLdb 1.2.2 fixes the
-bug.  Also, MySQL 5.1.23 has major bugs that lead to loss of data when packing,
-so MySQL 5.1 is not recommended at this time.
+bug.
 
 Finally, modify etc/zope.conf of your Zope instance.  Remove the main mount
 point and add one of the following blocks.  For PostgreSQL::
@@ -126,6 +126,8 @@
 Sometimes RelStorage needs a schema modification along with a software
 upgrade.  Hopefully, this will not often be necessary.
 
+Version 1.2.0b1 does not require a schema migration from version 1.1.3.
+
 To migrate from version 1.1.1 to version 1.1.2 or 1.1.3, see:
 
   migrate-to-1.1.2.txt_

Modified: relstorage/trunk/setup.py
===================================================================
--- relstorage/trunk/setup.py	2009-05-06 03:16:30 UTC (rev 99784)
+++ relstorage/trunk/setup.py	2009-05-06 03:17:45 UTC (rev 99785)
@@ -13,7 +13,7 @@
 ##############################################################################
 """A backend for ZODB that stores pickles in a relational database."""
 
-VERSION = "1.2dev"
+VERSION = "1.2.0b1"
 
 # The choices for the Trove Development Status line:
 # Development Status :: 5 - Production/Stable



More information about the Checkins mailing list