summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Camba Garrido <ashwoods@gmail.com>2018-02-12 19:00:46 +0100
committerAshley Camba Garrido <ashwoods@gmail.com>2018-02-12 19:00:46 +0100
commit2d79ea3be488fa493fb1e99ce79bfdf2c2a13b3d (patch)
tree6e359039986f860f97aa897895436b8abacbe5f5
parent98193c01a714137e19dd1e264a82269edd6df363 (diff)
downloadraven-2d79ea3be488fa493fb1e99ce79bfdf2c2a13b3d.tar.gz
Release: 6.5.0 → 6.6.0
-rw-r--r--.bumpversion.cfg2
-rw-r--r--CHANGELOG.md7
-rw-r--r--raven/__init__.py2
3 files changed, 9 insertions, 2 deletions
diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 451bf94..a2b075b 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -2,7 +2,7 @@
commit = False
tag = False
tag_name = {new_version}
-current_version = 6.5.0
+current_version = 6.6.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{dev}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d1c411c..6d224bc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,13 @@ Changelog
All notable changes to this project will be documented in this file.
Project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+
+6.6.0 (2018-02-12)
+------------------
+* [Core] Add trimming to breadcrumbs.
+* [Core] Improve host message at startup.
+* [Core] Update pytest to work on other environments
+
6.5.0 (2018-01-15)
------------------
* [Core] Fixed missing deprecation on `processors.SanitizePasswordsProcessor`
diff --git a/raven/__init__.py b/raven/__init__.py
index b16544b..f4c68f0 100644
--- a/raven/__init__.py
+++ b/raven/__init__.py
@@ -12,7 +12,7 @@ import os.path
__all__ = ('VERSION', 'Client', 'get_version')
-VERSION = '6.5.0'
+VERSION = '6.6.0'
def _get_git_revision(path):