From 4b8539a355d6125da2ea41ebaefabd84f9f81a73 Mon Sep 17 00:00:00 2001 From: Mallory Hancock Date: Wed, 19 Oct 2016 18:48:54 -0700 Subject: [PATCH 1/2] Fix issue with importing the migration script --- cistern/cistern.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cistern/cistern.py b/cistern/cistern.py index e418fb0..ecce5be 100755 --- a/cistern/cistern.py +++ b/cistern/cistern.py @@ -10,7 +10,7 @@ from tabulate import tabulate import transmissionrpc -import migrations +from cistern import migrations cistern_folder = os.getenv('CISTERNHOME', os.path.join(os.environ['HOME'], '.cistern')) db = SqliteDatabase(os.path.join(cistern_folder, 'cistern.db')) From 893aaedcb6f794560dfc9f08816105196fd54ad9 Mon Sep 17 00:00:00 2001 From: Mallory Hancock Date: Wed, 19 Oct 2016 18:49:08 -0700 Subject: [PATCH 2/2] Increment version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index a10850d..3ad9829 100755 --- a/setup.py +++ b/setup.py @@ -7,14 +7,14 @@ setup( name="cistern", - version="0.1.4", + version="0.1.5", license="MIT", url="https://github.com/archangelic/cistern", description="Command line tool for downloading torrents from RSS feeds.", author="Michael Hancock", author_email="michaelhancock89@gmail.com", download_url=( - "https://github.com/archangelic/cistern/archive/v0.1.4.tar.gz" + "https://github.com/archangelic/cistern/archive/v0.1.5.tar.gz" ), install_requires=[ 'click',