From 0100ab83b63601d5f8e67c76dfb46ec527795045 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Thu, 1 Sep 2022 15:54:31 +0000 Subject: [PATCH] release: 1.9.7 --- CHANGELOG.md | 6 ++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04426d2a56..ac486f1c7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.9.7 + +### Various fixes & improvements + +- Let SentryAsgiMiddleware work with Starlette and FastAPI integrations (#1594) by @antonpirker + ## 1.9.6 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 4bf71eee97..ae67facfee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ copyright = "2019, Sentry Team and Contributors" author = "Sentry Team and Contributors" -release = "1.9.6" +release = "1.9.7" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index c44cce2e96..c9146871f5 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -103,7 +103,7 @@ def _get_default_options(): del _get_default_options -VERSION = "1.9.6" +VERSION = "1.9.7" SDK_INFO = { "name": "sentry.python", "version": VERSION, diff --git a/setup.py b/setup.py index 2c4dfdca07..f47955964d 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.9.6", + version="1.9.7", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",