From 2b25c93610eb33ba3b3bc014d95f2819dd8dc58b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sat, 6 May 2017 16:22:13 +0200 Subject: [PATCH] Version bump --- docs/about.rst | 10 ++++++++++ logstash_async/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/about.rst b/docs/about.rst index 7d4dfbf..14a169f 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -52,6 +52,16 @@ ChangeLog --------- +1.2.0 (May 06, 2017) +++++++++++++++++++++ + + * Require path setting to the Sqlite database + (the previous default value ":memory:" doesn't help, see #5) + * Fix a Python3 incompatibility (#3) + * Fix a Django 1.8 / local Django development server + incompatibility (3) + + 1.1.1 (Apr 05, 2017) ++++++++++++++++++++ diff --git a/logstash_async/__init__.py b/logstash_async/__init__.py index 47b03b9..a2ecedd 100644 --- a/logstash_async/__init__.py +++ b/logstash_async/__init__.py @@ -3,4 +3,4 @@ # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE file for details. -__version__ = '1.1.1' +__version__ = '1.2.0' diff --git a/setup.py b/setup.py index 9b3051a..11f41e9 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ import sys NAME = 'python-logstash-async' -VERSION = '1.1.1' +VERSION = '1.2.0' here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst')) as f: