Skip to content

Commit 8fa2f1f

Browse files
committed
Release v0.13.17
1 parent e5905dd commit 8fa2f1f

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
**0.13.17**
4+
5+
- Fix deprecation warning related to Logging.warn
6+
- Fix bug where non-copyable objects could cause an exception if they end up trying to get passed to
7+
one of the logging methods.
8+
- Fix bug where both `trace` and `trace_chain` could appear in the final payload, which is not
9+
allowed by the API.
10+
311
**0.13.16**
412

513
- Fix PyPI documentation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.16)](https://travis-ci.org/rollbar/pyrollbar)
1+
# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.17)](https://travis-ci.org/rollbar/pyrollbar)
22

33
<!-- RemoveNext -->
44
Python notifier for reporting exceptions, errors, and log messages to [Rollbar](https://rollbar.com).

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,5 +615,5 @@ Contributing
615615
Tests are in ``rollbar/test``. To run the tests:
616616
``python setup.py test``
617617

618-
.. |Build Status| image:: https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.16
618+
.. |Build Status| image:: https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.17
619619
:target: https://travis-ci.org/rollbar/pyrollbar

rollbar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
from rollbar.lib import dict_merge, parse_qs, text, transport, urljoin, iteritems
2626

27-
__version__ = '0.13.16'
27+
__version__ = '0.13.17'
2828
__log_name__ = 'rollbar'
2929
log = logging.getLogger(__log_name__)
3030

0 commit comments

Comments
 (0)