From b7d9fdb779377c8f792a08c911953223b9e90f45 Mon Sep 17 00:00:00 2001 From: Mark Date: Sat, 26 Sep 2015 00:20:19 +0100 Subject: [PATCH] Up the version number --- bambu_buffer/__init__.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bambu_buffer/__init__.py b/bambu_buffer/__init__.py index 219d210..55ff557 100644 --- a/bambu_buffer/__init__.py +++ b/bambu_buffer/__init__.py @@ -7,7 +7,7 @@ from datetime import datetime, date from threading import Thread import requests -__version__ = '3.3.1' +__version__ = '3.3.2' default_app_config = 'bambu_buffer.apps.BufferConfig' class BufferThread(Thread): @@ -44,7 +44,7 @@ def post(item, author, **kwargs): elif isinstance(item, Model): url = item.get_absolute_url() content_type = ContentType.objects.get_for_model(item) - + if BufferedItem.objects.filter( object_id = item.pk, content_type = content_type diff --git a/setup.py b/setup.py index 1355202..efe3c78 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from os import path setup( name = 'bambu-buffer', - version = '3.3.1', + version = '3.3.2', description = 'Post to Buffer and manage profile settings through a Django-powered site', author = 'Steadman', author_email = 'mark@steadman.io',