diff --git a/CHANGELOG.md b/CHANGELOG.md index 342705561e..42255efc96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.9.2 + +### Various fixes & improvements + +- chore: remove quotes (#1545) by @vladanpaunovic + ## 1.9.1 ### Various fixes & improvements diff --git a/docs/conf.py b/docs/conf.py index 7d26e39617..5dfd8e4831 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.9.1" +release = "1.9.2" version = ".".join(release.split(".")[:2]) # The short X.Y version. diff --git a/sentry_sdk/consts.py b/sentry_sdk/consts.py index 42c8a555f5..a991db7d14 100644 --- a/sentry_sdk/consts.py +++ b/sentry_sdk/consts.py @@ -103,7 +103,7 @@ def _get_default_options(): del _get_default_options -VERSION = "1.9.1" +VERSION = "1.9.2" SDK_INFO = { "name": "sentry.python", "version": VERSION, diff --git a/setup.py b/setup.py index 8e370c68f2..127ef8aafb 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def get_file_text(file_name): setup( name="sentry-sdk", - version="1.9.1", + version="1.9.2", author="Sentry Team and Contributors", author_email="hello@sentry.io", url="https://github.com/getsentry/sentry-python",