From b000252825fadf528bb45673abf9f37451284d5f Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Fri, 5 May 2023 13:51:18 +0000 Subject: [PATCH] release: 1.22.1 --- 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 61327a82a0..8365638026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.22.1 + +### Various fixes & improvements + +- Fix: Handle a list of keys (not just a single key) in Django cache spans (#2082) by @antonpirker + ## 1.22.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index abc9645413..80a806e3a0 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.22.0" +release = "1.22.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 3f2f39bc66..48a8913a11 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -194,4 +194,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.22.0" +VERSION = "1.22.1" diff --git a/setup.py b/setup.py index a3da84f9cf..d1d07f9ebd 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.22.0", + version="1.22.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",