[SQL-CVS] SQLObject README.txt,1.2,1.3 setup.py,1.4,1.5
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <ian...@us...> - 2003-04-08 03:08:10
|
Update of /cvsroot/sqlobject/SQLObject In directory sc8-pr-cvs1:/tmp/cvs-serv12016 Modified Files: README.txt setup.py Log Message: Updated docs (almost ready for release!) Index: README.txt =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/README.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README.txt 13 Mar 2003 20:32:43 -0000 1.2 --- README.txt 8 Apr 2003 03:08:00 -0000 1.3 *************** *** 1,5 **** ! =============== ! SQLObject 0.2.1 ! =============== :Author: Ian Bicking --- 1,5 ---- ! ============= ! SQLObject 0.3 ! ============= :Author: Ian Bicking *************** *** 12,17 **** It absolutely requires Python 2.2 or higher. It currently supports ! MySQL through the `MySQLdb` package, and PostgreSQL through the ! `psycopg` package. For more information please see the documentation in --- 12,17 ---- It absolutely requires Python 2.2 or higher. It currently supports ! MySQL through the `MySQLdb` package, PostgreSQL through the ! `psycopg` package, SQLite, and a DBM-based backend. For more information please see the documentation in Index: setup.py =================================================================== RCS file: /cvsroot/sqlobject/SQLObject/setup.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** setup.py 14 Mar 2003 04:17:53 -0000 1.4 --- setup.py 8 Apr 2003 03:08:00 -0000 1.5 *************** *** 1,5 **** from distutils.core import setup setup(name="SQLObject", ! version="0.2.1", description="Object-Relational Manager", author="Ian Bicking", --- 1,5 ---- from distutils.core import setup setup(name="SQLObject", ! version="0.3", description="Object-Relational Manager", author="Ian Bicking", |