Skip to content

Commit dbc02e6

Browse files
committed
release: 2.5.0
1 parent 9227968 commit dbc02e6

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 2.5.0
4+
5+
### Various fixes & improvements
6+
7+
- feat(starlette): Allow to configure status codes to report to Sentry (#3008) by @sentrivana
8+
- fix(redis): Support multiple keys with cache_prefixes (#3136) by @sentrivana
9+
- fix(cache): Fix key_as_string (#3132) by @sentrivana
10+
- build(deps): bump actions/checkout from 4.1.4 to 4.1.5 (#3067) by @dependabot
11+
- Update SDK version in CONTRIBUTING.md (#3129) by @sentrivana
12+
313
## 2.4.0
414

515
### Various fixes & improvements

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
copyright = "2019-{}, Sentry Team and Contributors".format(datetime.now().year)
2929
author = "Sentry Team and Contributors"
3030

31-
release = "2.4.0"
31+
release = "2.5.0"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -508,4 +508,4 @@ def _get_default_options():
508508
del _get_default_options
509509

510510

511-
VERSION = "2.4.0"
511+
VERSION = "2.5.0"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def get_file_text(file_name):
2121

2222
setup(
2323
name="sentry-sdk",
24-
version="2.4.0",
24+
version="2.5.0",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)