From 9854c2bccfda8a503b9ad58321b1efcc5e20eedf Mon Sep 17 00:00:00 2001 From: David Cramer Date: Wed, 15 Oct 2014 10:16:02 +0100 Subject: [PATCH] 5.1.0 --- CHANGES | 10 ++++++++++ setup.py | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index c956493c..301ae045 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,13 @@ +Version 5.1.0 +------------- + +* Added aiohttp transport. +* Corrected behavior with auto_log_stacks and exceptions. +* Add support for certifi. +* Expanded Flask support. +* Expanded Django support. +* Corrected an issue where processors were not correctly applying. + Version 5.0.0 ------------- diff --git a/setup.py b/setup.py index d99771a4..95704fef 100755 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ class PyTest(TestCommand): self.test_suite = True def run_tests(self): - #import here, cause outside the eggs aren't loaded + # import here, cause outside the eggs aren't loaded import pytest errno = pytest.main(self.test_args) sys.exit(errno) @@ -94,7 +94,7 @@ class PyTest(TestCommand): setup( name='raven', - version='5.0.0', + version='5.1.0', author='David Cramer', author_email='dcramer@gmail.com', url='http://github.com/getsentry/raven-python',