From 9cfa65eb8d268f217d3f58aa1d946f039344cbf3 Mon Sep 17 00:00:00 2001 From: Eric Zarowny Date: Wed, 5 Oct 2016 09:50:48 -0700 Subject: [PATCH] v0.13.6 --- 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 44dd7c13..144880c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +**0.13.6** + +- Fixed a referenced before assignment in the failsafe. See [#136](https://github.com/rollbar/pyrollbar/pull/136) + **0.13.5** - Fixed record message formatting issues breaking the log handler's history. See [#135](https://github.com/rollbar/pyrollbar/pull/135) diff --git a/README.md b/README.md index 2d8697a7..be5cf092 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.5)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.6)](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 c4ace5c0..0bdd86e5 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.5' +__version__ = '0.13.6' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)