diff --git a/CHANGELOG.md b/CHANGELOG.md index 554b50dabc..0a7f6f74d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.25.0 + +### Various fixes & improvements + +- Revert "Pin urllib3 to <2.0.0 for now" (#2148) by @asottile-sentry +- Auto-retry tests on failure (#2134) by @sentrivana +- correct importlib.metadata check in test_modules (#2149) by @asottile-sentry +- Fix distribution name normalization (PEP-0503) (#2144) by @rominf +- fix: functions_to_trace typing (#2141) by @rcmarron + ## 1.24.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 0f206a4b01..5a57409bd6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -30,7 +30,7 @@ copyright = "2019, Sentry Team and Contributors" author = "Sentry Team and Contributors" -release = "1.24.0" +release = "1.25.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index bb5f79eb39..524d8e0571 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -214,4 +214,4 @@ def _get_default_options(): del _get_default_options -VERSION = "1.24.0" +VERSION = "1.25.0" diff --git a/setup.py b/setup.py index 6f7420f7c6..372866fc01 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.24.0", + version="1.25.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",