diff --git a/CHANGELOG.md b/CHANGELOG.md index f09c2b50b2..b9ce7ba45b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.1.1 + +### Various fixes & improvements + +- Fix DSC in celery tasks started by Celery Beat. (#3047) by @antonpirker + ## 2.1.0 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index f90d9b924a..0f3c483d0b 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.0" +release = "2.1.1" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index ac59d60bfc..4a0efd2486 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.1.0" +VERSION = "2.1.1" diff --git a/setup.py b/setup.py index 55e821f620..6a6917fbe0 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="2.1.0", + version="2.1.1", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",