This repository was archived by the owner on Oct 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 22commit = False
33tag = False
44tag_name = {new_version}
5- current_version = 6.5.0.dev0
5+ current_version = 6.5.0
66parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
77serialize =
88 {major}.{minor}.{patch}.{release}{dev}
Original file line number Diff line number Diff line change @@ -4,6 +4,14 @@ Changelog
44All notable changes to this project will be documented in this file.
55Project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
66
7+ 6.5.0 (2018-01-15)
8+ ------------------
9+ * [ Core] Fixed missing deprecation on ` processors.SanitizePasswordsProcessor `
10+ * [ Core] Improve exception handling in ` Serializer.transform `
11+ * [ Core] Fixed ` celery.register_logger_signal ` ignoring subclasses
12+ * [ Core] Fixed sanitizer skipping ` byte ` instances
13+ * [ Lambda] Fixed ` AttributeError ` when ` requestContext ` not present
14+
7156.4.0 (2017-12-11)
816------------------
917* [ Core] Support for defining ` sanitized_keys ` on the client (pr/990)
Original file line number Diff line number Diff line change 1212
1313__all__ = ('VERSION' , 'Client' , 'get_version' )
1414
15- VERSION = '6.5.0.dev0 '
15+ VERSION = '6.5.0'
1616
1717
1818def _get_git_revision (path ):
You can’t perform that action at this time.
0 commit comments