diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4d30e2e..9ea90fa 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,13 @@ Stalker Changes =============== +0.2.24.1 +======== + +* **Fix:** Fixed ``stalker.db`` module to check for the correct Alembic + revision id. + + 0.2.24 ====== diff --git a/alembic/versions/bf67e6a234b4_added_revision_code_attribute.py b/alembic/versions/bf67e6a234b4_added_revision_code_attribute.py index bc4bb57..a015d75 100644 --- a/alembic/versions/bf67e6a234b4_added_revision_code_attribute.py +++ b/alembic/versions/bf67e6a234b4_added_revision_code_attribute.py @@ -1,4 +1,4 @@ -"""Added Revision.code attribute +"""Added Repository.code attribute Revision ID: bf67e6a234b4 Revises: ed0167fff399 diff --git a/stalker/__init__.py b/stalker/__init__.py index f28e8e7..b1f65df 100644 --- a/stalker/__init__.py +++ b/stalker/__init__.py @@ -23,7 +23,7 @@ import sys -__version__ = '0.2.24' +__version__ = '0.2.24.1' __title__ = "stalker" __description__ = 'A Production Asset Management (ProdAM) System' diff --git a/stalker/db/__init__.py b/stalker/db/__init__.py index 33323a2..f0d43b1 100644 --- a/stalker/db/__init__.py +++ b/stalker/db/__init__.py @@ -29,7 +29,7 @@ logger.setLevel(logging_level) # TODO: Try to get it from the API (it was not working inside a package before) -alembic_version = 'ed0167fff399' +alembic_version = 'bf67e6a234b4' def setup(settings=None):