diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fa9fcfc95..fadb274f6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 1.24.0 + +### Various fixes & improvements + +- Pinned version of dependency that broke the build (#2133) by @antonpirker +- Add support for ExceptionGroups (#2025) by @antonpirker +- Celery beat exclude option (#2130) by @antonpirker +- Work with a copy of request, vars in the event (#2125) by @sentrivana +- Prefer importlib.metadata over pkg_resources if available (#2081) by @sentrivana + ## 1.23.1 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index b69e34c0c0..340f9e17fb 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.23.1" +release = "1.24.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index a7c5e3b853..18c888fa3b 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.23.1" +VERSION = "1.24.0" diff --git a/setup.py b/setup.py index 104d48c699..1f2ce8d648 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.23.1", + version="1.24.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",