This commit is contained in:
David Cramer 2014-10-15 10:16:02 +01:00
parent d6a898f756
commit 9854c2bccf
2 changed files with 12 additions and 2 deletions

10
CHANGES
View File

@ -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
-------------

View File

@ -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',