Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Oct 23, 2017
1 parent 966b772 commit 6c78bfc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
16 changes: 11 additions & 5 deletions docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,17 @@ License
ChangeLog
---------

1.X.X (Sep 05 2017)
++++++++++++++++++++

* Added in-memory cache back (see #12)
* Added support for TTL of messages
1.3.0 (Oct 23 2017)
+++++++++++++++++++

* Added in-memory cache back (#12, loganasherjones)
* Added support for TTL of messages (loganasherjones)
* Minor Python3 compability fixes
* Implement AsynchronousLogstashHandler::flush method
to manually flushed queued events (#15, Vladislav Pakhomov)
* Ease modification of constants from the calling application (#14)
* Add Formatter parameter 'ensure_ascii' to workaround potential
encoding errors on some setups (#9, Sergei Lobastov)


1.2.0 (May 06, 2017)
Expand Down
2 changes: 1 addition & 1 deletion logstash_async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '1.2.0'
__version__ = '1.3.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 @@
import sys

NAME = 'python-logstash-async'
VERSION = '1.2.0'
VERSION = '1.3.0'

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

0 comments on commit 6c78bfc

Please sign in to comment.