Skip to content

Commit cfcc694

Browse files
committed
Version bump
1 parent 1f03566 commit cfcc694

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

docs/about.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,19 @@ License
9292
ChangeLog
9393
---------
9494

95+
2.1.0 (Nov 02 2020)
96+
+++++++++++++++++++
97+
98+
* Remove "six" dependency.
99+
* Add "HTTP Input" transport (#56, Jürgen Löhel).
100+
* Skip logging stacktraces for common network errors
101+
(#55, #56, Walter Macomber).
102+
* Extend FORMATTER_RECORD_FIELD_SKIP_LIST to filter
103+
all record fields (#52).
104+
* Docs: Fix error in logging.config.fileConfig code example
105+
(#54, Guy).
106+
107+
95108
2.0.0 (Aug 16 2020)
96109
+++++++++++++++++++
97110

logstash_async/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This software may be modified and distributed under the terms
44
# of the MIT license. See the LICENSE file for details.
55

6-
__version__ = '2.0.0'
6+
__version__ = '2.1.0'
77

88
# When using an in-memory only cache, this persists the cache through
99
# thread failures, shutdowns, and restarts.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import sys
1010

1111
NAME = 'python-logstash-async'
12-
VERSION = '2.0.0'
12+
VERSION = '2.1.0'
1313

1414
here = path.abspath(path.dirname(__file__))
1515
with open(path.join(here, 'README.rst'), 'rb') as f:

0 commit comments

Comments
 (0)