From 30ede11cfb3b50899a35fed3c23d121849f68512 Mon Sep 17 00:00:00 2001 From: Eric Zarowny Date: Thu, 22 Sep 2016 15:53:07 -0700 Subject: [PATCH] v0.13.5 --- CHANGELOG.md | 4 ++++ README.md | 2 +- rollbar/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6879308d..44dd7c13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +**0.13.5** + +- Fixed record message formatting issues breaking the log handler's history. See [#135](https://github.com/rollbar/pyrollbar/pull/135) + **0.13.4** - Fixed failsafe handling for payloads that are too large. See [#133](https://github.com/rollbar/pyrollbar/pull/133) diff --git a/README.md b/README.md index 4fe97366..2d8697a7 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.4)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.5)](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 595934ca..dc78ebc2 100644 --- a/rollbar/__init__.py +++ b/rollbar/__init__.py @@ -23,7 +23,7 @@ from rollbar.lib import dict_merge, parse_qs, text, transport, urljoin, iteritems -__version__ = '0.13.4' +__version__ = '0.13.5' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)