]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
its release time rel_0_1_3
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 2 Mar 2006 01:48:58 +0000 (01:48 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 2 Mar 2006 01:48:58 +0000 (01:48 +0000)
CHANGES
setup.py

diff --git a/CHANGES b/CHANGES
index 6724ff1116c1d635a221e11cbcd659a2f8364d0b..e7ddaa92ccd274f97671eeefc3ce42f6e38e9a17 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -30,6 +30,8 @@ function calls with no arguments work consistently
 - tables can be created with no engine specified.  this will default their engine
 to a module-scoped "default engine" which is a ProxyEngine.  this engine can 
 be connected via the function "global_connect".
+- added "refresh(*obj)" method to objectstore / Session to reload the attributes of
+any set of objects from the database unconditionally
 0.1.2
 - fixed a recursive call in schema that was somehow running 994 times then returning
 normally.  broke nothing, slowed down everything.  thanks to jpellerin for finding this.
index 61ef5497cdb1c437b67345d6e301879a4aa1b8b8..b8b9d1f56e62cbb60c09d47302ed43332ef43763 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ use_setuptools()
 from setuptools import setup, find_packages
 
 setup(name = "SQLAlchemy",
-    version = "0.1.2",
+    version = "0.1.3",
     description = "Database Abstraction Library",
     author = "Mike Bayer",
     author_email = "mike_mp@zzzcomputing.com",