From ebac6415c8684b9c78f9298fe820c9b6ca9e1007 Mon Sep 17 00:00:00 2001 From: Eric Zarowny Date: Fri, 16 Sep 2016 10:52:46 -0700 Subject: [PATCH] v0.13.4 --- 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 75e5237d..6879308d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +**0.13.4** + +- Fixed failsafe handling for payloads that are too large. See [#133](https://github.com/rollbar/pyrollbar/pull/133) + **0.13.3** - Improved handling of Enums. See [#121](https://github.com/rollbar/pyrollbar/pull/121) diff --git a/README.md b/README.md index c8cb6e15..b2b9a426 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.3)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.4)](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 c0dec289..595934ca 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.3' +__version__ = '0.13.4' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)