diff --git a/CHANGELOG.md b/CHANGELOG.md index df6c8cfdc1..fd5dcb59a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## 2.2.0 + +### New features + +- Celery integration now sends additional data to Sentry to enable new features to guage the health of your queues +- Added a new integration for Cohere +- Reintroduced the `last_event_id` function, which had been removed in 2.0.0 + +### Other fixes & improvements + +- Add tags + data passing functionality to @ai_track (#3071) by @colin-sentry +- fix(tracing): Only propagate headers from spans within transactions (#3070) by @szokeasaurusrex +- ref(metrics): Improve type hints for set metrics (#3048) by @elramen +- ref(scope): Fix `get_client` typing (#3063) by @szokeasaurusrex +- Auto-enable Anthropic integration + gate imports (#3054) by @colin-sentry +- Made MeasurementValue.unit NotRequired (#3051) by @antonpirker + ## 2.1.1 - Fix trace propagation in Celery tasks started by Celery Beat. (#3047) by @antonpirker diff --git a/docs/conf.py b/docs/conf.py index 0f3c483d0b..9f6f87a697 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -28,7 +28,7 @@ copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year) author = "Sentry Team and Contributors" -release = "2.1.1" +release = "2.2.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 6648913e28..1fbe6ff72e 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -488,4 +488,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.1.1" +VERSION = "2.2.0" diff --git a/setup.py b/setup.py index 6a6917fbe0..a8ba845d6f 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.1.1", + version="2.2.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",