From f07c1caed825f6728e053cc3f105f1d446da2987 Mon Sep 17 00:00:00 2001 From: Victor Oliveira da Silva Date: Sun, 14 Jun 2015 01:39:25 -0300 Subject: [PATCH] updating version number --- CHANGES.txt | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 6e4c693..a44aaa2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -7,3 +7,4 @@ v0.2.5, 02-14-2015 -- Adjustment in _get_unique_filename function. v0.2.7, 04-02-2015 -- Adjustment so files can be saved/retrieved without using ModelForms. v0.2.9, 05-27-2015 -- Refactoring of widgets code and adding widget for the Django Admin; some pep-8 corrections. v0.2.10, 06-13-2015 -- Putting demo/test project inside the main repo, updating documentation files. +v0.2.11, 06-14-2015 -- Python3 compatibility diff --git a/setup.py b/setup.py index 653ccbd..b2ccf31 100644 --- a/setup.py +++ b/setup.py @@ -6,13 +6,13 @@ setup( name='django-db-file-storage', - version='0.2.10', + version='0.2.11', author='Victor Oliveira da Silva', author_email='victor_o_silva@hotmail.com', packages=['db_file_storage'], url='https://github.com/victor-o-silva/db_file_storage', download_url='https://github.com/victor-o-silva/db_file_storage' - '/tarball/0.2.10', + '/tarball/0.2.11', license='GNU GPL v3', description="Custom FILE_STORAGE for Django. Saves model's filefields " "in your database instead of your file system.",