diff --git a/CHANGELOG.md b/CHANGELOG.md index 3845a0be3d..fe693f3be3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.40.3 + +### Various fixes & improvements + +- fix(metrics): Turn off metrics for uWSGI (#2720) by @sentrivana +- Minor improvements (#2714) by @antonpirker + ## 1.40.2 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 8b89fdd2dc..a84a22e80a 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.40.2" +release = "1.40.3" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 26c364eb7a..92ca967428 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -317,4 +317,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.40.2" +VERSION = "1.40.3" diff --git a/setup.py b/setup.py index 1d43280ee4..2e24e7b4a7 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.40.2", + version="1.40.3", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",