From a54bc1dda1e96d3c2a12fa0e680d75eaf4b0997b Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Fri, 20 Jan 2017 16:01:41 -0500 Subject: [PATCH] 0.4.0 (#26) * redo migrations * merge and new version * remove serialize (#25) * bump Version and add more readme --- README.md | 1 + .../migrations/0003_auto_remove_serialize.py | 20 +++++++++++++++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 dbfilestorage/migrations/0003_auto_remove_serialize.py diff --git a/README.md b/README.md index 0d6b062..30c125d 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ I will sign everything with 0x769A1BC78A2DDEE2 ## CHANGELOG +- 2017-01-20 [Tyrel Souza] Add another migration, and redo all the initial migrations. - 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. diff --git a/dbfilestorage/migrations/0003_auto_remove_serialize.py b/dbfilestorage/migrations/0003_auto_remove_serialize.py new file mode 100644 index 0000000..c3b24c8 --- /dev/null +++ b/dbfilestorage/migrations/0003_auto_remove_serialize.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.4 on 2017-01-20 20:51 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('dbfilestorage', '0002_add_filehash_rename_files'), + ] + + operations = [ + migrations.AlterField( + model_name='dbfile', + name='name', + field=models.CharField(max_length=100), + ), + ] diff --git a/docs/conf.py b/docs/conf.py index 8c58772..73bfe2e 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.3.0' +version = u'0.4.0' # The full version, including alpha/beta/rc tags. -release = u'0.3.0' +release = u'0.4.0' # 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 e2ab505..e7a494f 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ class CleanCommand(Command): setup( name="django-dbfilestorage", - version="0.3.0", + version="0.4.0", description="Database backed file storage for testing.", long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.", author="Tyrel Souza",