diff --git a/CHANGELOG.md b/CHANGELOG.md index 69ef466666..4d4e20c232 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 1.39.1 + +### Various fixes & improvements + +- fix(django): Fix psycopg2 detection (#2593) by @sentrivana +- fix(utils): Filter out empty string releases (#2591) by @sentrivana +- Fixed local var not present when error in users error_sampler function (#2511) by @antonpirker +- Fixed typing in aiohttp (#2590) by @antonpirker + ## 1.39.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 6d9542539f..9e69e95b2b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "1.39.0" +release = "1.39.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index c336a67f3a..ba070f5818 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -316,4 +316,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.39.0" +VERSION = "1.39.1" diff --git a/setup.py b/setup.py index 698046cdc1..14b79b23e5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.39.0", + version="1.39.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",