From 316e01bd78702c8664e8dcf17f283f0c1c3800b5 Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Thu, 24 Oct 2019 10:13:53 -0700 Subject: [PATCH] Bumped version number to 0.3.0 There is a slight backwards incompatibility because the default behavior for CSS loading if DEBUG=True has changed from using staticfiles finders to using staticfiles storage. --- django_inlinecss/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_inlinecss/__version__.py b/django_inlinecss/__version__.py index dfd69f9..fbf0a5b 100644 --- a/django_inlinecss/__version__.py +++ b/django_inlinecss/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 2, 0) +VERSION = (0, 3, 0) __version__ = '.'.join(map(str, VERSION))