Update of /cvsroot/sqlobject/SQLObject/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv26566/docs
Modified Files:
News.txt
Log Message:
Added notes on changes
Index: News.txt
===================================================================
RCS file: /cvsroot/sqlobject/SQLObject/docs/News.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** News.txt 13 Mar 2003 20:29:16 -0000 1.3
--- News.txt 14 Mar 2003 09:10:11 -0000 1.4
***************
*** 8,11 ****
--- 8,29 ----
.. _start:
+ SQLObject 0.3
+ =============
+
+ Features
+ --------
+
+ * New column classes (see `Col` module), indicates type
+
+ * Table creation (SQL schema generation) via new class method
+ `createTable`.
+
+ * Objects are not cached indefinitely. Cached objects are expired
+ into a weak dictionary (it allows objects to be garbage collected if
+ nowhere else in the program is using the object, but until it is
+ collected it's still available to the cache). Some cache control,
+ pass ``nocache=True`` to your connection object to eliminate as much
+ caching as possible. See `Cache` module for a bit more.
+
SQLObject 0.2.1
===============
|