summaryrefslogtreecommitdiff
path: root/alembic/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-07 18:00:42 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-07 18:00:42 -0400
commita7ada78d87aeb7383455b3935457950f1070d4b2 (patch)
tree1ef5720cf920459d4120bab10c868002fa248e0b /alembic/__init__.py
parent456d364626bdbff1d3ded8499242f819b937e7f6 (diff)
downloadalembic-a7ada78d87aeb7383455b3935457950f1070d4b2.tar.gz
- [bug] bulk_insert() fixes:rel_0_3_1
1. bulk_insert() operation was not working most likely since the 0.2 series when used with an engine. #41 2. Repaired bulk_insert() to complete when used against a lower-case-t table and executing with only one set of parameters, working around SQLAlchemy bug #2461 in this regard. 3. bulk_insert() uses "inline=True" so that phrases like RETURNING and such don't get invoked for single-row bulk inserts. 4. bulk_insert() will check that you're passing a list of dictionaries in, raises TypeError if not detected.
Diffstat (limited to 'alembic/__init__.py')
-rw-r--r--alembic/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/__init__.py b/alembic/__init__.py
index c1c253c..4831217 100644
--- a/alembic/__init__.py
+++ b/alembic/__init__.py
@@ -1,6 +1,6 @@
from os import path
-__version__ = '0.3.0'
+__version__ = '0.3.1'
package_dir = path.abspath(path.dirname(__file__))