From aed0cca9a2bc5abf0e3c3224e96b3e27da16d319 Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Fri, 24 Nov 2023 15:22:56 +0000 Subject: [PATCH] release: 1.37.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 e740afed39..7a8fbc8696 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.37.1 + +### Various fixes & improvements + +- Fix `NameError` on `parse_version` with eventlet (#2532) by @sentrivana +- build(deps): bump checkouts/data-schemas from `68def1e` to `e9f7d58` (#2501) by @dependabot + ## 1.37.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 0536ed1669..77f143ee63 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.37.0" +release = "1.37.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 1e28787ecd..785dba0c9d 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -314,4 +314,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.37.0" +VERSION = "1.37.1" diff --git a/setup.py b/setup.py index d5fcf385df..da548a60a6 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.37.0", + version="1.37.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",