From f4221055c21537bf0b22a88f1a5fb6db9cc97abb Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Fri, 9 Dec 2016 10:24:31 -0500 Subject: [PATCH] Sign and Verison 0.1.2 (#18) * Bump Version * Update Readme with signign key * Bump Version --- README.md | 6 ++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index faefb51..0fdb402 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/conf.py b/docs/conf.py index 56d73fa..18046c7 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.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. diff --git a/setup.py b/setup.py index 395e805..0ff51b2 100644 --- a/setup.py +++ b/setup.py @@ -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",