Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Jan 26, 2025
1 parent be021a3 commit 9d345c6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
+++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion logstash_async/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9d345c6

Please sign in to comment.