summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-03-02 01:48:58 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-03-02 01:48:58 +0000
commitecebb7cd87b0c545c2d050b010724d79d0568258 (patch)
treeb7d2c4cc4aee304425b92b88189f1e0eaada25e1
parent9985d21385ca8a478dcdd7d989982295775d0383 (diff)
downloadsqlalchemy-ecebb7cd87b0c545c2d050b010724d79d0568258.tar.gz
its release timerel_0_1_3
-rw-r--r--CHANGES2
-rw-r--r--setup.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 6724ff111..e7ddaa92c 100644
--- 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.
diff --git a/setup.py b/setup.py
index 61ef5497c..b8b9d1f56 100644
--- 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",