From 18d62840fb4322a3b89f54e22ffec8217be497d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Thu, 14 Sep 2023 23:08:33 +0200 Subject: [PATCH] Version bump --- docs/about.rst | 6 ++++++ logstash_async/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/about.rst b/docs/about.rst index 5c3b8b6..803a8af 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -92,6 +92,12 @@ License ChangeLog --------- +2.7.2 (Sep 14 2023) ++++++++++++++++++++ + + * Implement get_non_flushed_event_count() for MemoryCache (#88). + + 2.7.1 (Sep 10 2023) +++++++++++++++++++ diff --git a/logstash_async/__init__.py b/logstash_async/__init__.py index 4c80341..9270e0b 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__ = '2.7.1' +__version__ = '2.7.2' # 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 f628e9c..0e016ed 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ import sys NAME = 'python-logstash-async' -VERSION = '2.7.1' +VERSION = '2.7.2' here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), 'rb') as f: