Skip to content

Commit

Permalink
🔖 Update version number to 0.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-o-silva committed Feb 2, 2020
1 parent db98a2c commit 723fa63
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,5 @@
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
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
0.5.4 2020-02-02 Add support for Django 3.0.2
8 changes: 1 addition & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ django-db-file-storage
:target: https://travis-ci.org/victor-o-silva/db_file_storage
:alt: Build Status

.. image:: https://landscape.io/github/victor-o-silva/db_file_storage/master/landscape.svg?style=flat
:target: https://landscape.io/github/victor-o-silva/db_file_storage/master
:alt: Code Health

.. image:: https://coveralls.io/repos/victor-o-silva/db_file_storage/badge.svg?branch=master
:target: https://coveralls.io/r/victor-o-silva/db_file_storage?branch=master
:alt: Code Coverage
Expand All @@ -25,9 +21,7 @@ Django DB File Storage is a custom
`file storage system <https://docs.djangoproject.com/en/dev/topics/files/#file-storage>`_
for Django. Use it to save files in your database instead of your file system.

Supports Python versions ``2.7``, ``3.5``, ``3.6`` & ``3.7``, and Django versions ``1.11``, ``2.0`` & ``2.1``.

``Python 3.4``, ``Django 1.8``, ``Django 1.9`` and ``Django 1.10`` are not supported anymore. If you HAVE to stick with them, you can use Django DB File Storage 0.5.2 `(PyPI) <https://pypi.python.org/pypi/django-db-file-storage/0.5.2>`_ `(GitHub) <https://github.com/victor-o-silva/db_file_storage/releases/tag/0.5.2>`_.
Supports Python versions ``2.7``, ``3.5``, ``3.6``, ``3.7`` & ``3.8``, and Django versions ``1.11``, ``2.2`` & ``3.0``.

Documentation
========================
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

readme_file = open('README.rst')

VERSION = '0.5.3'
VERSION = '0.5.4'

setup(
name='django-db-file-storage',
Expand All @@ -27,8 +27,8 @@
classifiers=[
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
Expand All @@ -38,6 +38,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)

Expand Down

0 comments on commit 723fa63

Please sign in to comment.