From: Mike Bayer Date: Thu, 2 Mar 2006 01:48:58 +0000 (+0000) Subject: its release time X-Git-Tag: rel_0_1_3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecebb7cd87b0c545c2d050b010724d79d0568258;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git its release time --- diff --git a/CHANGES b/CHANGES index 6724ff1116..e7ddaa92cc 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 61ef5497cd..b8b9d1f56e 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",