From c59c82ffb106926d92c13648400c1fd2941a2a4b Mon Sep 17 00:00:00 2001 From: Jason McBrayer Date: Tue, 4 Sep 2018 19:21:09 -0400 Subject: [PATCH] Remove unused setting and bump minor version --- brutaldon/settings.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/brutaldon/settings.py b/brutaldon/settings.py index 000ccc0..63e8a30 100644 --- a/brutaldon/settings.py +++ b/brutaldon/settings.py @@ -189,14 +189,9 @@ FILE_UPLOAD_HANDLERS = ["django.core.files.uploadhandler.TemporaryFileUploadHand # Important: whatever you choose has to be able to serialize DateTime, so not JSON. SESSION_SERIALIZER = 'django.contrib.sessions.serializers.PickleSerializer' -# Max length of toots -# Later this will be a user setting, but I am adding it here so that I don't -# write any magic numbers into the validation code -TOOT_MAX_LENGTH = 500 - # URL to redirect users to when not logged in ANONYMOUS_HOME_URL = 'about' # Version number displayed on about page -BRUTALDON_VERSION = "2.1.2" +BRUTALDON_VERSION = "2.2.0"