diff --git a/docs/about.rst b/docs/about.rst index d760072..7ce7d9d 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -52,11 +52,17 @@ License ChangeLog --------- -1.X.X (Sep 05 2017) -++++++++++++++++++++ - - * Added in-memory cache back (see #12) - * Added support for TTL of messages +1.3.0 (Oct 23 2017) ++++++++++++++++++++ + + * Added in-memory cache back (#12, loganasherjones) + * Added support for TTL of messages (loganasherjones) + * Minor Python3 compability fixes + * Implement AsynchronousLogstashHandler::flush method + to manually flushed queued events (#15, Vladislav Pakhomov) + * Ease modification of constants from the calling application (#14) + * Add Formatter parameter 'ensure_ascii' to workaround potential + encoding errors on some setups (#9, Sergei Lobastov) 1.2.0 (May 06, 2017) diff --git a/logstash_async/__init__.py b/logstash_async/__init__.py index e8893f0..c5a4a3f 100644 --- a/logstash_async/__init__.py +++ b/logstash_async/__init__.py @@ -3,7 +3,7 @@ # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE file for details. -__version__ = '1.2.0' +__version__ = '1.3.0' # When using an in-memory only cache, this persists the cache through # thread failures, shutdowns, and restarts. diff --git a/setup.py b/setup.py index 8ddcfe2..13e5c93 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ import sys NAME = 'python-logstash-async' -VERSION = '1.2.0' +VERSION = '1.3.0' here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), 'rb') as f: