diff --git a/CHANGELOG.md b/CHANGELOG.md index 42fefeb1..8464e144 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +**0.13.17** + +- Fix deprecation warning related to Logging.warn +- Fix bug where non-copyable objects could cause an exception if they end up trying to get passed to + one of the logging methods. +- Fix bug where both `trace` and `trace_chain` could appear in the final payload, which is not + allowed by the API. + **0.13.16** - Fix PyPI documentation diff --git a/README.md b/README.md index d4cbd3a3..c376e009 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.16)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.17)](https://travis-ci.org/rollbar/pyrollbar) Python notifier for reporting exceptions, errors, and log messages to [Rollbar](https://rollbar.com). diff --git a/README.rst b/README.rst index 69e72f93..cf5ba1b6 100644 --- a/README.rst +++ b/README.rst @@ -615,5 +615,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.16 +.. |Build Status| image:: https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.17 :target: https://travis-ci.org/rollbar/pyrollbar diff --git a/rollbar/__init__.py b/rollbar/__init__.py index 85ff2993..d7128e11 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.16' +__version__ = '0.13.17' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)