Skip to content

Commit

Permalink
Update version number to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-o-silva committed Dec 2, 2017
1 parent 651c5d6 commit 60e8957
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -17,3 +17,4 @@ v0.4.0, 03-25-2016 -- Dropped support for Python 3.3, Django 1.6 and Django 1.7
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
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.4.3'
version = u'0.4.4'
# The full version, including alpha/beta/rc tags.
release = u'0.4.3'
release = version

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -6,13 +6,13 @@

setup(
name='django-db-file-storage',
version='0.4.3',
version='0.4.4',
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.3',
'/tarball/0.4.4',
description="Custom FILE_STORAGE for Django. Saves files "
"in your database instead of your file system.",
long_description=readme_file.read(),
Expand All @@ -31,6 +31,7 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)

Expand Down

0 comments on commit 60e8957

Please sign in to comment.