Skip to content

Commit

Permalink
Update version number to 0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-o-silva committed Aug 26, 2018
1 parent 3a89088 commit ff53754
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 32 deletions.
51 changes: 26 additions & 25 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
v0.1.0, 03-24-2013 -- Initial release.
v0.2.0, 11-14-2013 -- Adding ability to get the image without downloading it.
v0.2.1, 12-04-2013 -- Refactoring code and adding sphinx documentation.
v0.2.2, 02-14-2015 -- Applying pep-8 rules, adding delete_file functions, documenting previously undocumented views.
v0.2.5, 02-14-2015 -- Linking to the demo/tests project.
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
v0.2.12, 06-14-2015 -- Showing Build Status and Code Health on the README
v0.3.0, 06-14-2015 -- Test suite (passing) for Python (2.7, 3.3, 3.4) and Django (1.6, 1.7, 1.8)
v0.3.1, 07-11-2015 -- Adding a DatabaseFileStorage subclass that can be used with Form Wizards
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)
v0.4.2, 03-17-2017 -- Support PKs with custom names; support Python 3.6 & Django 1.10
v0.4.3, 10-09-2017 -- Let Django serialize DatabaseFileStorage instances
v0.4.4, 12-02-2017 -- Support Django 1.11
v0.4.5, 12-05-2017 -- Bugfix: include templates in installation
v0.4.6, 01-06-2018 -- Bugfix: fix widgets rendering when form has no values
v0.5.0, 01-27-2018 -- Support Django 2.0
v0.5.1, 02-21-2018 -- Bugfix: Fix error when unsaved File Objects don't have a `url` attribute
v0.5.2, 04-04-2018 -- Include templates when packaging the app
0.1.0 2013-03-24 Initial release.
0.2.0 2013-11-14 Adding ability to get the image without downloading it.
0.2.1 2013-12-04 Refactoring code and adding sphinx documentation.
0.2.2 2015-02-14 Applying pep-8 rules, adding delete_file functions, documenting previously undocumented views.
0.2.5 2015-02-14 Linking to the demo/tests project.
0.2.5 2015-02-14 Adjustment in _get_unique_filename function.
0.2.7 2015-04-02 Adjustment so files can be saved/retrieved without using ModelForms.
0.2.9 2015-05-27 Refactoring of widgets code and adding widget for the Django Admin; some pep-8 corrections.
0.2.10 2015-06-13 Putting demo/test project inside the main repo, updating documentation files.
0.2.11 2015-06-14 Python3 compatibility
0.2.12 2015-06-14 Showing Build Status and Code Health on the README
0.3.0 2015-06-14 Test suite (passing) for Python (2.7, 3.3, 3.4) and Django (1.6, 1.7, 1.8)
0.3.1 2015-07-11 Adding a DatabaseFileStorage subclass that can be used with Form Wizards
0.3.2 2015-11-15 Adding Windows compatibility
0.3.3 2015-11-15 Fixing lib for OSs other than Linux
0.4.0 2016-03-25 Dropped support for Python 3.3, Django 1.6 and Django 1.7 ; Change license to MIT License
0.4.1 2016-05-14 Fixing Windows compatibility (finally)
0.4.2 2017-03-17 Support PKs with custom names; support Python 3.6 & Django 1.10
0.4.3 2017-10-09 Let Django serialize DatabaseFileStorage instances
0.4.4 2017-12-02 Support Django 1.11
0.4.5 2017-12-05 Bugfix: include templates in installation
0.4.6 2018-01-06 Bugfix: fix widgets rendering when form has no values
0.5.0 2018-01-27 Support Django 2.0
0.5.1 2018-02-21 Bugfix: Fix error when unsaved File Objects don't have a `url` attribute
0.5.2 2018-04-04 Include templates when packaging the app
0.5.3 2018-08-25 Add support for storing file contents in a BinaryField; drop support for Python 3.4 and Django 1.8~1.10
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# built documents.
#
# The short X.Y version.
version = u'0.5.2'
version = u'0.5.3'
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@

readme_file = open('README.rst')

VERSION = '0.5.3'

setup(
name='django-db-file-storage',
version='0.5.2',
version=VERSION,
author='Victor Oliveira da Silva',
author_email='victor_o_silva@hotmail.com',
packages=['db_file_storage'],
Expand All @@ -15,7 +17,7 @@
},
url='https://github.com/victor-o-silva/db_file_storage',
download_url='https://github.com/victor-o-silva/db_file_storage'
'/tarball/0.5.2',
'/tarball/{}'.format(VERSION),
description="Custom FILE_STORAGE for Django. Saves files "
"in your database instead of your file system.",
long_description=readme_file.read(),
Expand All @@ -24,20 +26,18 @@
],
classifiers=[
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

Expand Down

1 comment on commit ff53754

@dannluciano
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this project.

Please sign in to comment.