From 371cf448ffb3e3396f77184d69509cae1a0afea4 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 30 Jan 2024 12:51:46 +0000 Subject: [PATCH] release: 1.40.0 --- CHANGELOG.md | 14 ++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d504dfbec..edff1a7645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 1.40.0 + +### Various fixes & improvements + +- feat(ddm): Enable metrics related settings by default (#2685) by @iambriccardo +- fix(utils): Fix `UnicodeDecodeError` on Python 2 (#2657) by @sentrivana +- Enable DB query source by default (#2629) by @sentrivana +- fix(query-source): Fix query source duration check (#2675) by @sentrivana +- style: Reformat with black==24.1.0 (#2680) by @sentrivana +- Cleaning up existing code to prepare for new Scopes API (#2611) by @antonpirker +- Moved redis related tests to databases (#2674) by @antonpirker +- ref(api): Improve `sentry_sdk.trace` type hints (#2633) by @szokeasaurusrex +- build(deps): bump checkouts/data-schemas from `e9f7d58` to `aa7058c` (#2639) by @dependabot + ## 1.39.2 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 435489c000..7a6cded721 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.2" +release = "1.40.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index a9fa9f0188..8296865681 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.2" +VERSION = "1.40.0" diff --git a/setup.py b/setup.py index dd4e69c388..bbaa98bbd2 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.39.2", + version="1.40.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",