diff --git a/docs/about.rst b/docs/about.rst index 3df044d..8846152 100644 --- a/docs/about.rst +++ b/docs/about.rst @@ -92,6 +92,16 @@ License ChangeLog --------- +2.4.0 (Apr 04 2022) ++++++++++++++++++++ + + * Update link to docs for rate limit string notation + (#70, Garrett Hyde). + * Log connection and network errors as warnings (#71). + * Fix support for Django 4.0 by using Request.build_absolute_uri(). + * Use datetime as column type for "entry_date" in database. + + 2.3.0 (May 23 2021) +++++++++++++++++++ diff --git a/logstash_async/__init__.py b/logstash_async/__init__.py index e1cb8a0..a927c70 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.3.0' +__version__ = '2.4.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 2929551..0687f91 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ import sys NAME = 'python-logstash-async' -VERSION = '2.3.0' +VERSION = '2.4.0' here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), 'rb') as f: