Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Releases/6.5.0 #1182

Merged
merged 3 commits into from
Jan 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
commit = False
tag = False
tag_name = {new_version}
current_version = 6.5.0.dev0
current_version = 6.5.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{dev}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,14 @@ 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.5.0 (2018-01-15)
------------------
* [Core] Fixed missing deprecation on `processors.SanitizePasswordsProcessor`
* [Core] Improve exception handling in `Serializer.transform`
* [Core] Fixed `celery.register_logger_signal` ignoring subclasses
* [Core] Fixed sanitizer skipping `byte` instances
* [Lambda] Fixed `AttributeError` when `requestContext` not present

6.4.0 (2017-12-11)
------------------
* [Core] Support for defining `sanitized_keys` on the client (pr/990)
2 changes: 1 addition & 1 deletion raven/__init__.py
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@

__all__ = ('VERSION', 'Client', 'get_version')

VERSION = '6.5.0.dev0'
VERSION = '6.5.0'


def _get_git_revision(path):