diff --git a/CHANGELOG.md b/CHANGELOG.md index 422fefd1b6..f85d657d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 2.3.0 + +### Various fixes & improvements + +- NEW: Redis integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ (#3073) by @antonpirker +- NEW: Django integration supports now Sentry Caches module. See https://docs.sentry.io/product/performance/caches/ (#3009) by @antonpirker +- Fix `cohere` testsuite for new release of `cohere` (#3098) by @antonpirker +- Fix ClickHouse integration where `_sentry_span` might be missing (#3096) by @sentrivana + ## 2.2.1 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 57450a636c..4fb97bb48a 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.2.1" +release = "2.3.0" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 3829d1278a..5a68a47434 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -508,4 +508,4 @@ def _get_default_options(): del _get_default_options -VERSION = "2.2.1" +VERSION = "2.3.0" diff --git a/setup.py b/setup.py index 24d63c2dbb..ca0a14b674 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.2.1", + version="2.3.0", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",