From c925b0c971baef067dd762a54c9507fa4615f03f Mon Sep 17 00:00:00 2001 From: Victor Oliveira da Silva Date: Sat, 14 May 2016 22:00:49 -0300 Subject: [PATCH] Update version number --- CHANGES.txt | 1 + docs/conf.py | 6 +++--- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 068099b..c038c9b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -14,3 +14,4 @@ v0.3.1, 07-11-2015 -- Adding a DatabaseFileStorage subclass that can be used wi v0.3.2, 11-15-2015 -- Adding Windows compatibility v0.3.3, 11-15-2015 -- Fixing lib for OSs other than Linux v0.4.0, 03-25-2016 -- Dropped support for Python 3.3, Django 1.6 and Django 1.7 ; Currently supporting Python (2.7, 3.4, 3.5) and Django (1.8, 1.9) ; Change license to MIT License +v0.4.1, 05-14-2016 -- Fixing Windows compatibility (finally) diff --git a/docs/conf.py b/docs/conf.py index 2e998e9..00856bf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,9 +56,9 @@ # built documents. # # The short X.Y version. -version = u'0.4.0' +version = u'0.4.1' # The full version, including alpha/beta/rc tags. -release = u'0.4.0' +release = u'0.4.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -132,7 +132,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. -#html_title = u'Django Database File Storage v0.4.0' +#html_title = u'Django Database File Storage v0.4.1' # A shorter title for the navigation bar. Default is the same as html_title. #html_short_title = None diff --git a/setup.py b/setup.py index 237fd2a..7d5326d 100644 --- a/setup.py +++ b/setup.py @@ -6,13 +6,13 @@ setup( name='django-db-file-storage', - version='0.4.0', + version='0.4.1', 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.4.0', + '/tarball/0.4.1', description="Custom FILE_STORAGE for Django. Saves files " "in your database instead of your file system.", long_description=readme_file.read(),