Skip to content

Commit 4fea13f

Browse files
committed
release: 1.13.0
1 parent c6d7b67 commit 4fea13f

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## 1.13.0
4+
5+
### Various fixes & improvements
6+
7+
- fix(serializer): Add support for `byterray` and `memoryview` built-in types (#1833) by @Tarty
8+
- Feat: add Starlite integration (#1748) by @gazorby
9+
- Added Python 3.11 to test suite (#1795) by @antonpirker
10+
- Update test/linting dependencies (#1801) by @antonpirker
11+
- ref(profiling): Remove sample buffer from profiler (#1791) by @Zylphrex
12+
- Auto publish to internal pypi on release (#1823) by @asottile-sentry
13+
- perf(profiling): Performance tweaks to profile sampler (#1789) by @Zylphrex
14+
- Add span for Django SimpleTemplateResponse rendering (#1818) by @chdsbd
15+
- Add enqueued_at and started_at to rq job extra (#1024) by @kruvasyan
16+
- Remove sanic v22 pin (#1819) by @sl0thentr0py
17+
- Use @wraps for Django Signal receivers (#1815) by @meanmail
18+
- Handle `"rc"` in SQLAlchemy version. (#1812) by @peterschutt
19+
- doc: Use .venv (not .env) as a virtual env location in CONTRIBUTING.md (#1790) by @tonyo
20+
- build(deps): bump sphinx from 5.2.3 to 5.3.0 (#1686) by @dependabot
21+
322
## 1.12.1
423

524
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
copyright = "2019, Sentry Team and Contributors"
3030
author = "Sentry Team and Contributors"
3131

32-
release = "1.12.1"
32+
release = "1.13.0"
3333
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3434

3535

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@ def _get_default_options():
140140
del _get_default_options
141141

142142

143-
VERSION = "1.12.1"
143+
VERSION = "1.13.0"

setup.py

Lines changed: 1 addition & 1 deletion
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="1.12.1",
24+
version="1.13.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)