Update Version number

This commit is contained in:
Tyrel Souza 2016-12-08 15:31:46 -05:00
parent 4fa1caafa3
commit 62a5118a7e
No known key found for this signature in database
GPG Key ID: 2EECB5087209E6A5
3 changed files with 3 additions and 4 deletions

View File

@ -1,6 +1,5 @@
# Django-dbfilestorage
[![CircleCI](https://circleci.com/gh/tyrelsouza/django-dbfilestorage.svg?style=svg)](https://circleci.com/gh/tyrelsouza/django-dbfilestorage) [![codecov](https://codecov.io/gh/tyrelsouza/django-dbfilestorage/branch/master/graph/badge.svg)](https://codecov.io/gh/tyrelsouza/django-dbfilestorage)
Custom file storage for Django that stores file data and content type in the database.

View File

@ -54,9 +54,9 @@ author = u'Tyrel Souza'
# built documents.
#
# The short X.Y version.
version = u'0.0.3'
version = u'0.0.4'
# The full version, including alpha/beta/rc tags.
release = u'0.0.3'
release = u'0.0.4'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -10,7 +10,7 @@ except ImportError:
setup(
name="django-dbfilestorage",
version="0.0.3",
version="0.0.4",
description="Database backed file storage for testing.",
long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.",
author="Tyrel Souza",