From 8ea863b9f185b4c06e66a808cebe96be436c4825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Mon, 27 Jan 2025 22:41:05 +0100 Subject: [PATCH] Version bump --- docs/about.rst | 7 +++++++ logstash_async/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/about.rst b/docs/about.rst index ea77d57..512d911 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -94,6 +94,13 @@ License ChangeLog --------- +4.0.1 (Jan 27 2025) ++++++++++++++++++++ + + * Properly require Python >= 3.11. + The previous release had a wrong requirement set unfortunately. + + 4.0.0 (Jan 26 2025) +++++++++++++++++++ diff --git a/logstash_async/__init__.py b/logstash_async/__init__.py index 42e6dc5..388ff9a 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__ = '4.0.0' +__version__ = '4.0.1' # 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 31e7eaa..b8a4885 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ NAME = 'python-logstash-async' -VERSION = '4.0.0' +VERSION = '4.0.1' here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), 'rb') as f: