diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d1090eb..97fa2df 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,6 +1,6 @@ [bumpversion] commit = True tag = True -current_version = 6.13.0 +current_version = 6.13.1 [bumpversion:file:nylas/_client_sdk_version.py] diff --git a/CHANGELOG.md b/CHANGELOG.md index f70efae..d1a8180 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,14 @@ nylas-python Changelog ====================== +v6.13.1 +---------- +* Fixed UTF-8 character encoding for all API requests to preserve special characters (accented letters, emoji, etc.) instead of escaping them as unicode sequences + v6.13.0 ---------- * Fixed from field handling in messages.send() to properly map "from_" field to "from field * Fixed content_id handling for large inline attachments to use content_id as field name instead of generic file{index} -* Fixed UTF-8 character encoding for all API requests to preserve special characters (accented letters, emoji, etc.) instead of escaping them as unicode sequences v6.12.0 ---------- diff --git a/nylas/_client_sdk_version.py b/nylas/_client_sdk_version.py index 5dd6c42..e8a66e9 100644 --- a/nylas/_client_sdk_version.py +++ b/nylas/_client_sdk_version.py @@ -1 +1 @@ -__VERSION__ = "6.13.0" +__VERSION__ = "6.13.1"