From c402a7e7661adee5ee1a35bfff1d964700c93efd Mon Sep 17 00:00:00 2001 From: Sven Grunewaldt Date: Thu, 27 Jun 2019 15:51:14 +0200 Subject: [PATCH] Bump version to 0.4.0 --- HISTORY.rst | 7 +++++++ django_gcloud_storage/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index cac2c47..da36373 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,13 @@ History ------- +0.4.0 (2019-06-27) +~~~~~~~~~~~~~~~~~~ + +* Autodetect and set object Content-Type on upload +* Added test support for Django 2.2 +* Dropped test support for Django 2.0 + 0.3.1 (2018-08-08) ~~~~~~~~~~~~~~~~~~ diff --git a/django_gcloud_storage/__init__.py b/django_gcloud_storage/__init__.py index a7a902e..51fd429 100644 --- a/django_gcloud_storage/__init__.py +++ b/django_gcloud_storage/__init__.py @@ -19,7 +19,7 @@ from google.cloud.exceptions import NotFound from google.cloud.storage.bucket import Bucket -__version__ = '0.3.1' +__version__ = '0.4.0' DJANGO_17 = django.get_version().startswith('1.7.') diff --git a/setup.cfg b/setup.cfg index 92b5acb..1a86577 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.4.0 commit = True tag = True diff --git a/setup.py b/setup.py index e930fee..94fa6ed 100755 --- a/setup.py +++ b/setup.py @@ -50,8 +50,8 @@ def get_version(*file_paths): 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Framework :: Django :: 1.11', - 'Framework :: Django :: 2.0', 'Framework :: Django :: 2.1', + 'Framework :: Django :: 2.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: BSD License', 'Natural Language :: English',