summaryrefslogtreecommitdiff
path: root/alembic/__init__.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-04-05 13:33:37 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-04-05 13:33:37 -0400
commit8332e56a18e30ebc5c74bf782f6ad42d14ea9814 (patch)
tree77376be5ec647966d29deee768a4eddb90cca94e /alembic/__init__.py
parent67fda40a43c79f532f5d3c4f041e2203a126fffd (diff)
downloadalembic-8332e56a18e30ebc5c74bf782f6ad42d14ea9814.tar.gz
- move to 0.3 as we are changing APIrel_0_3_0
- [general] The focus of 0.3 is to clean up and more fully document the public API of Alembic, including better accessors on the MigrationContext and ScriptDirectory objects. Methods that are not considered to be public on these objects have been underscored, and methods which should be public have been cleaned up and documented, including: MigrationContext.get_current_revision() ScriptDirectory.iterate_revisions() ScriptDirectory.get_current_head() ScriptDirectory.get_heads() ScriptDirectory.get_base() ScriptDirectory.generate_revision() - [feature] Added a bit of autogenerate to the public API in the form of the function alembic.autogenerate.compare_metadata.
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 7c50518..c1c253c 100644
--- a/alembic/__init__.py
+++ b/alembic/__init__.py
@@ -1,6 +1,6 @@
from os import path
-__version__ = '0.2.2'
+__version__ = '0.3.0'
package_dir = path.abspath(path.dirname(__file__))