From 1ab1fa9c6873583e2b8c8478fb93572133892670 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Thu, 27 Jun 2024 14:08:34 +0000 Subject: [PATCH] release: 2.7.1 --- CHANGELOG.md | 9 +++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b1098d1ec..d19e6a3912 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 2.7.1 + +### Various fixes & improvements + +- fix(otel): Fix missing baggage (#3218) by @sentrivana +- This is the config file of asdf-vm which we do not use. (#3215) by @antonpirker +- Added option to disable middleware spans in Starlette (#3052) by @antonpirker +- build: Update tornado version in setup.py to match code check. (#3206) by @aclemons + ## 2.7.0 - Add `origin` to spans and transactions (#3133) by @antonpirker diff --git a/docs/conf.py b/docs/conf.py index f5e292afa3..1d4fadd1e9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "2.7.0" +release = "2.7.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 4f74ff9503..3e9f67c4be 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -529,4 +529,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.7.0" +VERSION = "2.7.1" diff --git a/setup.py b/setup.py index e1245c05bb..4d8e2b883c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.7.0", + version="2.7.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",