diff options
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -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. @@ -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", |
