From 70d547864979a8876bc0828ea3e8af6f4c91ff85 Mon Sep 17 00:00:00 2001 From: Jonathan Stoppani Date: Fri, 20 Apr 2018 14:56:15 +0200 Subject: [PATCH] Prepare for 2.1.0 release --- HISTORY.rst | 6 ++++++ djclick/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index f8add4b..fc7ee0a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ======= +2.1.0 - 2018-04-20 +================== + +* Add experimental support for Django 2.0 + + 2.0.0 - 2017-06-30 ================== diff --git a/djclick/__init__.py b/djclick/__init__.py index f91d880..956eb41 100644 --- a/djclick/__init__.py +++ b/djclick/__init__.py @@ -8,7 +8,7 @@ from .adapter import GroupRegistrator as group, pass_verbosity # NOQA -__version__ = '2.0.0' +__version__ = '2.1.0' __url__ = 'https://github.com/GaretJax/django-click' __author__ = 'Jonathan Stoppani' __email__ = 'jonathan@stoppani.name'