summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Camba Garrido <ashwoods@gmail.com>2017-09-21 15:24:40 +0200
committerAshley Camba Garrido <ashwoods@gmail.com>2017-09-21 15:24:40 +0200
commit73d2de99d99f0b7d64150b4dc8f9d07ca2897a74 (patch)
tree6bdfab45e9c3560f71b8c5e1d5c36687f74d5cf9
parent96281980c33a74af70e2b1e84d6a72185870b50b (diff)
downloadraven-6.2.0.tar.gz
Release 6.2.06.2.0
-rw-r--r--CHANGES14
-rw-r--r--raven/__init__.py2
2 files changed, 15 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 5f8d89d..15b84f8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,17 @@
+Version 6.2.0
+-------------
+
+* [Core] `get_frame_locals` properly using `max_var_size`
+* [Core] Fixed raven initialization when `logging._srcfile` is None
+* [Core] Fixed import locking to avoid recursion
+* [Django] Fixed several issues for Django 1.11 and Django 2.0
+* [Django/DRF] Fixed issue with unavailable request data
+* [Flask] Added app.logger instrumentation
+* [Flask] Added signal on setup_logging
+* [ZConfig] Added standalone ZConfig support
+* [Celery] Fixed several issues related to Celery
+
+
Version 6.1.0
-------------
diff --git a/raven/__init__.py b/raven/__init__.py
index a24a1e2..0961d35 100644
--- a/raven/__init__.py
+++ b/raven/__init__.py
@@ -12,7 +12,7 @@ import os.path
__all__ = ('VERSION', 'Client', 'get_version')
-VERSION = '6.2.0.dev0'
+VERSION = '6.2.0'
def _get_git_revision(path):