0.4.0 (#26)
* redo migrations * merge and new version * remove serialize (#25) * bump Version and add more readme
This commit is contained in:
parent
f35406d847
commit
a54bc1dda1
@ -54,6 +54,7 @@ I will sign everything with 0x769A1BC78A2DDEE2
|
|||||||
|
|
||||||
## CHANGELOG
|
## 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] Make sure migrations is actually there.
|
||||||
- 2017-01-20 [Tyrel Souza] Split filename and filehash.
|
- 2017-01-20 [Tyrel Souza] Split filename and filehash.
|
||||||
- 2016-12-09 [Tyrel Souza] Add signing key to readme.
|
- 2016-12-09 [Tyrel Souza] Add signing key to readme.
|
||||||
|
20
dbfilestorage/migrations/0003_auto_remove_serialize.py
Normal file
20
dbfilestorage/migrations/0003_auto_remove_serialize.py
Normal file
@ -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),
|
||||||
|
),
|
||||||
|
]
|
@ -54,9 +54,9 @@ author = u'Tyrel Souza'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = u'0.3.0'
|
version = u'0.4.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# 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
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
2
setup.py
2
setup.py
@ -24,7 +24,7 @@ class CleanCommand(Command):
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="django-dbfilestorage",
|
name="django-dbfilestorage",
|
||||||
version="0.3.0",
|
version="0.4.0",
|
||||||
description="Database backed file storage for testing.",
|
description="Database backed file storage for testing.",
|
||||||
long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.",
|
long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.",
|
||||||
author="Tyrel Souza",
|
author="Tyrel Souza",
|
||||||
|
Loading…
Reference in New Issue
Block a user