summaryrefslogtreecommitdiff
path: root/alembic/__init__.py
diff options
context:
space:
mode:
authorNathan Louie <nxlouie@umich.edu>2022-12-13 12:58:09 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2022-12-15 11:44:48 -0500
commit4678d7f1da009689449a6550768139c32b50c646 (patch)
tree910b93354c60c1424fb00306f58474c4fcbc1674 /alembic/__init__.py
parent3a5a7f33320d88363be18776a2076a19e600a593 (diff)
downloadalembic-4678d7f1da009689449a6550768139c32b50c646.tar.gz
add check command for upgrade diffs
Added new Alembic command ``alembic check``. This performs the widely requested feature of running an "autogenerate" comparison between the current database and the :class:`.MetaData` that's currently set up for autogenerate, returning an error code if the two do not match, based on current autogenerate settings. Pull request courtesy Nathan Louie. As this is a new feature we will call this 1.9.0 Fixes: #724 Closes: #1101 Pull-request: https://github.com/sqlalchemy/alembic/pull/1101 Pull-request-sha: 807ed545df70e7a10b913e2951a1b636f138a4ff Change-Id: I03b146eaf762be464a0ff0858ff5730cc9366c84
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 25833e5..26180b1 100644
--- a/alembic/__init__.py
+++ b/alembic/__init__.py
@@ -3,4 +3,4 @@ import sys
from . import context
from . import op
-__version__ = "1.8.2"
+__version__ = "1.9.0"