diff --git a/CHANGELOG.md b/CHANGELOG.md index b88da90d..c3db83ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ # Change Log +**0.12.1** + +- Keep blank values from request query strings when scrubbing URLs. See [#110](https://github.com/rollbar/pyrollbar/pull/110) + **0.12.0** - Fix and update Twisted support. See [#109](https://github.com/rollbar/pyrollbar/pull/109) - **Breaking Changes**: [treq](https://github.com/twisted/treq) is now required for using Twisted with pyrollbar. - **0.11.6** - Improve object handling for SQLAlchemy. See [#108](https://github.com/rollbar/pyrollbar/pull/108) diff --git a/README.md b/README.md index f104bfd6..fc33f9d8 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.12.0)](https://travis-ci.org/rollbar/pyrollbar) +# Rollbar notifier for Python [![Build Status](https://api.travis-ci.org/rollbar/pyrollbar.png?branch=v0.12.1)](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 8d889ecc..0093f57b 100644 --- a/rollbar/__init__.py +++ b/rollbar/__init__.py @@ -4,7 +4,7 @@ from __future__ import absolute_import from __future__ import unicode_literals -__version__ = '0.12.0' +__version__ = '0.12.1' import copy import inspect