diff --git a/CHANGELOG.md b/CHANGELOG.md index 334789b7..f5d023e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +**0.13.14** + +- Fix bug that caused some payload objects to be turned into the wrong type when +shortening is applied. This would lead to API rejections. See [#200](https://github.com/rollbar/pyrollbar/pull/200) +- Add `suppress_reinit_warning` option if you want to allow calling init twice. See [#198](https://github.com/rollbar/pyrollbar/pull/198) +- Pass through keyword arguments from the logging handler to the underling Rollbar init call. See + [#203](https://github.com/rollbar/pyrollbar/pull/203) + **0.13.13** - Add support for AWS Lambda. See [#191](https://github.com/rollbar/pyrollbar/pull/191) diff --git a/README b/README index a22d01de..22d98408 100644 --- a/README +++ b/README @@ -1241,5 +1241,5 @@ Contributing Tests are in ``rollbar/test``. To run the tests: ``python setup.py test`` -.. |Build Status| image:: https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.13 +.. |Build Status| image:: https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.14 :target: https://travis-ci.org/rollbar/pyrollbar diff --git a/README.md b/README.md index a84e1127..43ad3c9b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.13)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.14)](https://travis-ci.org/rollbar/pyrollbar) Python notifier for reporting exceptions, errors, and log messages to [Rollbar](https://rollbar.com). diff --git a/rollbar/__init__.py b/rollbar/__init__.py index c76f4af9..4cca1188 100644 --- a/rollbar/__init__.py +++ b/rollbar/__init__.py @@ -24,7 +24,7 @@ from rollbar.lib import dict_merge, parse_qs, text, transport, urljoin, iteritems -__version__ = '0.13.13' +__version__ = '0.13.14' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)