From 0f91f6d219b109dec760bc631cf122bb58d5c638 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Tue, 1 Aug 2023 11:11:27 +0000 Subject: [PATCH] release: 1.29.1 --- CHANGELOG.md | 7 +++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb3d512e6d..f0840e2723 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.29.1 + +### Various fixes & improvements + +- Fix GraphQL integration swallowing responses (#2286) by @sentrivana +- Fix typo (#2283) by @sentrivana + ## 1.29.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index e8aeaf38cd..1b172d1d46 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.29.0" +release = "1.29.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index f0771c9005..1e822359d7 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -263,4 +263,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.29.0" +VERSION = "1.29.1" diff --git a/setup.py b/setup.py index 6a9a37c1b4..3672562690 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.29.0", + version="1.29.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",