Sign and Verison 0.1.2 (#18)

* Bump Version

* Update Readme with signign key

* Bump Version
This commit is contained in:
Tyrel Souza 2016-12-09 10:24:31 -05:00 committed by GitHub
parent 32f8386764
commit f4221055c2
3 changed files with 9 additions and 3 deletions

View File

@ -47,9 +47,15 @@ class SomeClass(models.Model):
- Store original filename in a field, maybe?
- Use original filename instead, so it honors the "upload_to" parameter.
## Signing Key
You can find my signing key at [TyrelSouza.com](https://tyrelsouza.com/blog/pgp-keys/)
I will sign everything with 0x769A1BC78A2DDEE2
## CHANGELOG
- 2016-12-09 [Tyrel Souza] Add signing key to readme.
- 2016-12-09 [Tyrel Souza] Update Tests, add some cleanup.
- 2016-12-08 [Tyrel Souza] Add more documentation.
- 2016-12-07 [Tyrel Souza] Update Readme, move to github, gitlab wasn't functioning properly.
- 2016-12-07 [Tyrel Souza] Initial commits and basic project setup

View File

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

View File

@ -24,7 +24,7 @@ class CleanCommand(Command):
setup(
name="django-dbfilestorage",
version="0.1.1",
version="0.1.2",
description="Database backed file storage for testing.",
long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.",
author="Tyrel Souza",