From c2a4d5f9b12993e4234080b7cb7bb5a5444ff91b Mon Sep 17 00:00:00 2001 From: Eric Zarowny Date: Wed, 14 Dec 2016 11:19:52 -0800 Subject: [PATCH] v0.13.9 --- CHANGELOG.md | 5 +++++ README.md | 2 +- rollbar/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed5a0554..93d8dc89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +**0.13.9** + +- Change `_check_config()` to deal with agent handler. See [#147](https://github.com/rollbar/pyrollbar/pull/147) +- Fix settings values not being booleans in Pyramid. See [#150](https://github.com/rollbar/pyrollbar/pull/150) + **0.13.8** - Fix regression from 0.13.7. See [#141](https://github.com/rollbar/pyrollbar/pull/141) diff --git a/README.md b/README.md index c3bab93e..095ae14e 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.8)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.13.9)](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 e5581f05..fe17ca21 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.8' +__version__ = '0.13.9' __log_name__ = 'rollbar' log = logging.getLogger(__log_name__)