From 9d345c6deace32b2c19d5d7f2569898ee34006e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sun, 26 Jan 2025 13:24:57 +0100 Subject: [PATCH] Version bump --- docs/about.rst | 13 +++++++++++++ logstash_async/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/about.rst b/docs/about.rst index c05a12a..ea77d57 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -94,6 +94,19 @@ License ChangeLog --------- +4.0.0 (Jan 26 2025) ++++++++++++++++++++ + + * Breaking change: drop support for 3.8, 3.9 and 3.10. + * Catch errors on TCP/UDP socket closing to prevent requeuing of events + (#98, #100). + * Add new setting to configure batch sizes for Beats transport (#93). + * Support URL path in HttpTransport (#103, Seyyed Mohammad Borghei). + * LogstashFormatter: Move top_level_field_set creation to __init__ + to ease setting FORMATTER_LOGSTASH_MESSAGE_FIELD_LIST after + importing the formatter class (#96, #97, feliixx). + + 3.0.0 (Feb 12 2024) +++++++++++++++++++ diff --git a/logstash_async/__init__.py b/logstash_async/__init__.py index 6f47ac3..42e6dc5 100644 --- a/logstash_async/__init__.py +++ b/logstash_async/__init__.py @@ -1,7 +1,7 @@ # This software may be modified and distributed under the terms # of the MIT license. See the LICENSE file for details. -__version__ = '3.0.0' +__version__ = '4.0.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 063790a..902b129 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ NAME = 'python-logstash-async' -VERSION = '3.0.0' +VERSION = '4.0.0' here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), 'rb') as f: