From 87c84136866d43e82bd8b9a059d49866edb1abd1 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Fri, 20 Jan 2017 14:57:29 -0500 Subject: [PATCH] 0.1.5 (#23) * add migrations package (#22) * add migrations --- README.md | 1 + docs/conf.py | 4 ++-- setup.py | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3d93d72..0d6b062 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ I will sign everything with 0x769A1BC78A2DDEE2 ## CHANGELOG +- 2017-01-20 [Tyrel Souza] Make sure migrations is actually there. - 2017-01-20 [Tyrel Souza] Split filename and filehash. - 2016-12-09 [Tyrel Souza] Add signing key to readme. - 2016-12-09 [Tyrel Souza] Update Tests, add some cleanup. diff --git a/docs/conf.py b/docs/conf.py index 5cde4f3..ec3df25 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ author = u'Tyrel Souza' # built documents. # # The short X.Y version. -version = u'0.1.4' +version = u'0.1.5' # The full version, including alpha/beta/rc tags. -release = u'0.1.4' +release = u'0.1.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index d4dbf82..b5f837d 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class CleanCommand(Command): setup( name="django-dbfilestorage", - version="0.1.4", + version="0.1.5", description="Database backed file storage for testing.", long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.", author="Tyrel Souza", @@ -34,6 +34,7 @@ setup( license="MIT License", packages=[ "dbfilestorage", + "dbfilestorage.migrations", ], include_package_data=True, install_requires=[