From 385b77b1f41c970a95e14955180d4a7483d2868c Mon Sep 17 00:00:00 2001 From: getsentry-bot Date: Mon, 6 May 2024 09:04:15 +0000 Subject: [PATCH] release: 2.1.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ docs/conf.py | 2 +- sentry_sdk/consts.py | 2 +- setup.py | 2 +- 4 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 16a3072db5..f09c2b50b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## 2.1.0 + +### Various fixes & improvements + +- fix(quart): Fix Quart integration (#3043) by @szokeasaurusrex +- Reduce API cross-section for huggingface in test (#3042) by @colin-sentry +- Huggingface Hub integration (#3033) by @colin-sentry +- feat(integrations): Add Anthropic Integration (#2831) by @czyber +- meta(license): Bump copyright year (#3029) by @szokeasaurusrex +- feat(ai): Langchain integration (#2911) by @colin-sentry +- fix(django): fix Django ASGI integration on Python 3.12 (#3027) by @bellini666 +- feat(tests): Parallelize tox (#3025) by @sentrivana +- build(deps): bump checkouts/data-schemas from `4aa14a7` to `4381a97` (#3028) by @dependabot +- feat(perf): Add ability to put measurements directly on spans. (#2967) by @colin-sentry +- fix(tests): Fix trytond tests (#3031) by @sentrivana +- fix(tests): Update `pytest-asyncio` to fix CI (#3030) by @sentrivana +- fix(docs): Link to respective migration guides directly (#3020) by @sentrivana +- docs(scope): Add docstring to `Scope.set_tags` (#2978) by @szokeasaurusrex +- test(scope): Fix typos in assert error message (#2978) by @szokeasaurusrex +- test: Add unit test for top-level API `set_tags` (#2978) by @szokeasaurusrex +- test(scope): Add unit test for `Scope.set_tags` (#2978) by @szokeasaurusrex +- feat: Add `set_tags` to top-level API (#2978) by @szokeasaurusrex +- feat(scope): New `set_tags` function (#2978) by @szokeasaurusrex + ## 2.0.1 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index ae1ab934b3..f90d9b924a 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.0.1" +release = "2.1.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index a83fde9f1b..ac59d60bfc 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -433,4 +433,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.0.1" +VERSION = "2.1.0" diff --git a/setup.py b/setup.py index 39934c8aae..55e821f620 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.0.1", + version="2.1.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",