[Checkins] SVN: relstorage/trunk/ Prep for release

Shane Hathaway shane at hathawaymix.org
Wed Feb 4 15:51:41 EST 2009


Log message for revision 96084:
  Prep for release
  

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

-=-
Modified: relstorage/trunk/CHANGES.txt
===================================================================
--- relstorage/trunk/CHANGES.txt	2009-02-04 19:39:33 UTC (rev 96083)
+++ relstorage/trunk/CHANGES.txt	2009-02-04 20:51:41 UTC (rev 96084)
@@ -2,13 +2,21 @@
 Next Release
 ------------
 
+- ...
+
+
+Version 1.1.3 (2009-02-04)
+--------------------------
+
 - In rare circumstances, ZODB can legitimately commit an object twice in a
   single transaction.  Fixed RelStorage to accept that.
 
 - Auto reconnect to Oracle sometimes did not work because cx_Oracle was
   raising a different kind of exception than expected.  Fixed.
 
+- Included LICENSE.txt in the source distribution.
 
+
 Version 1.1.2 (2009-01-27)
 --------------------------
 

Copied: relstorage/trunk/LICENSE.txt (from rev 94156, ZODB/branches/shane-poll-invalidations/LICENSE.txt)
===================================================================
--- relstorage/trunk/LICENSE.txt	                        (rev 0)
+++ relstorage/trunk/LICENSE.txt	2009-02-04 20:51:41 UTC (rev 96084)
@@ -0,0 +1,54 @@
+Zope Public License (ZPL) Version 2.1
+-------------------------------------
+
+A copyright notice accompanies this license document that
+identifies the copyright holders.
+
+This license has been certified as open source. It has also
+been designated as GPL compatible by the Free Software
+Foundation (FSF).
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions in source code must retain the
+   accompanying copyright notice, this list of conditions,
+   and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the accompanying
+   copyright notice, this list of conditions, and the
+   following disclaimer in the documentation and/or other
+   materials provided with the distribution.
+
+3. Names of the copyright holders must not be used to
+   endorse or promote products derived from this software
+   without prior written permission from the copyright
+   holders.
+
+4. The right to distribute this software or to use it for
+   any purpose does not give you the right to use
+   Servicemarks (sm) or Trademarks (tm) of the copyright
+   holders. Use of them is covered by separate agreement
+   with the copyright holders.
+
+5. If any files are modified, you must cause the modified
+   files to carry prominent notices stating that you changed
+   the files and the date of any change.
+
+Disclaimer
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''
+  AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
+  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
+  NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+  DAMAGE.

Modified: relstorage/trunk/README.txt
===================================================================
--- relstorage/trunk/README.txt	2009-02-04 19:39:33 UTC (rev 96083)
+++ relstorage/trunk/README.txt	2009-02-04 20:51:41 UTC (rev 96084)
@@ -1,13 +1,12 @@
 
-Overview
-========
-
 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.
 
+.. contents::
 
+
 Features
 ========
 
@@ -96,15 +95,19 @@
      </relstorage>
     </zodb_db>
 
+
+Migration
+=========
+
 Migrating from FileStorage
-==========================
+--------------------------
 
 You can convert a FileStorage instance to RelStorage and back using a utility
 called ZODBConvert.  See http://wiki.zope.org/ZODB/ZODBConvert .
 
 
 Migrating from PGStorage
-========================
+------------------------
 
 The following script migrates your database from PGStorage to RelStorage 1.0
 beta:
@@ -118,12 +121,12 @@
 
 
 Migrating to a new version of RelStorage
-========================================
+----------------------------------------
 
 Sometimes RelStorage needs a schema modification along with a software
 upgrade.  Hopefully, this will not often be necessary.
 
-To migrate from version 1.1.1 to version 1.1.2, see:
+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-02-04 19:39:33 UTC (rev 96083)
+++ relstorage/trunk/setup.py	2009-02-04 20:51:41 UTC (rev 96084)
@@ -13,7 +13,7 @@
 ##############################################################################
 """A backend for ZODB that stores pickles in a relational database."""
 
-VERSION = "1.2dev"
+VERSION = "1.1.3"
 
 # The choices for the Trove Development Status line:
 # Development Status :: 5 - Production/Stable
@@ -21,7 +21,7 @@
 # Development Status :: 3 - Alpha
 
 classifiers = """\
-Development Status :: 4 - Beta
+Development Status :: 5 - Production/Stable
 Intended Audience :: Developers
 License :: OSI Approved :: Zope Public License
 Programming Language :: Python



More information about the Checkins mailing list