Skip to content

Commit

Permalink
* **Fix:** Fixed stalker.db module to check for the correct Alemb…
Browse files Browse the repository at this point in the history
…ic revision id.
  • Loading branch information
eoyilmaz committed Jan 1, 2020
1 parent 296406e commit 1207e2c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -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
======

Expand Down
@@ -1,4 +1,4 @@
"""Added Revision.code attribute
"""Added Repository.code attribute
Revision ID: bf67e6a234b4
Revises: ed0167fff399
Expand Down
2 changes: 1 addition & 1 deletion stalker/__init__.py
Expand Up @@ -23,7 +23,7 @@

import sys

__version__ = '0.2.24'
__version__ = '0.2.24.1'

__title__ = "stalker"
__description__ = 'A Production Asset Management (ProdAM) System'
Expand Down
2 changes: 1 addition & 1 deletion stalker/db/__init__.py
Expand Up @@ -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):
Expand Down

0 comments on commit 1207e2c

Please sign in to comment.