summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2017-05-25 21:45:34 +0200
committerArmin Ronacher <armin.ronacher@active-4.com>2017-05-25 21:45:34 +0200
commitf9e981e9850b6ed8e8c94d8507e65a2dcd3f691f (patch)
tree2c77cbc4f42f216aeff76967e6e6870c7702e346
parent6c2eedd8bcdbb88c53ed0cbf97270ceff077df27 (diff)
downloadraven-f9e981e9850b6ed8e8c94d8507e65a2dcd3f691f.tar.gz
6.1.06.1.0
-rw-r--r--CHANGES11
-rw-r--r--raven/__init__.py2
2 files changed, 10 insertions, 3 deletions
diff --git a/CHANGES b/CHANGES
index 507b4e1..5f8d89d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,12 @@
+Version 6.1.0
+-------------
+
+* Support both string and class values for ``ignore_exceptions`` parameters.
+ Class values also support child exceptions.
+* Ensure consistent fingerprint for SoftTimeLimitExceeded exceptions
+* Add sample_rate configuration
+* fix registration of hooks for Django
+
Version 6.0.0
-------------
@@ -13,8 +22,6 @@ Version 6.0.0
affected things like django-tastyepie.
* Corrected an issue where Django's HTTP request was not always available
within events.
-* Support both string and class values for ``ignore_exceptions`` parameters.
- Class values also support child exceptions.
Version 5.32.0
--------------
diff --git a/raven/__init__.py b/raven/__init__.py
index 869d539..fa85788 100644
--- a/raven/__init__.py
+++ b/raven/__init__.py
@@ -12,7 +12,7 @@ import os.path
__all__ = ('VERSION', 'Client', 'get_version')
-VERSION = '6.1.0.dev0'
+VERSION = '6.1.0'
def _get_git_revision(path):