Skip to content

Commit

Permalink
release: 1.17.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Mar 16, 2023
1 parent f7b0684 commit 79e3316
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 1.17.0

### Various fixes & improvements

- Add support for Sentry Crons to Celery Beat (#1935) by @antonpirker
- Add decorator for Sentry tracing (#1089) by @ynouri
- Added top level API to get current span (#1954) by @antonpirker
- feat(profiling): Add profiler options to init (#1947) by @Zylphrex
- Start a real http server instead of mocking libs (#1938) by @antonpirker
- feat(profiling): Set active thread id for quart (#1830) by @Zylphrex
- 🎨 Fix type annotation for ignore_errors in sentry_sdk.init() (#1928) by @tiangolo
- Update get_json function call for werkzeug 2.1.0+ (#1939) by @michielderoos
- fix: Rename MYPY to TYPE_CHECKING (#1934) by @untitaker
- Rename 'with_locals' to 'include_local_variables' (#1924) by @antonpirker
- Returning the tasks result. (#1931) by @antonpirker
- Make Django signals tracing optional (#1929) by @antonpirker

## 1.16.0

### Various fixes & improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
copyright = "2019, Sentry Team and Contributors"
author = "Sentry Team and Contributors"

release = "1.16.0"
release = "1.17.0"
version = ".".join(release.split(".")[:2]) # The short X.Y version.


Expand Down
2 changes: 1 addition & 1 deletion sentry_sdk/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ def _get_default_options():
del _get_default_options


VERSION = "1.16.0"
VERSION = "1.17.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def get_file_text(file_name):

setup(
name="sentry-sdk",
version="1.16.0",
version="1.17.0",
author="Sentry Team and Contributors",
author_email="[email protected]",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit 79e3316

Please sign in to comment.