Skip to content

Commit

Permalink
release: 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
getsentry-bot committed Jan 12, 2023
1 parent c6d7b67 commit 4fea13f
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 1.13.0

### Various fixes & improvements

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

## 1.12.1

### 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.12.1"
release = "1.13.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 @@ -140,4 +140,4 @@ def _get_default_options():
del _get_default_options


VERSION = "1.12.1"
VERSION = "1.13.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.12.1",
version="1.13.0",
author="Sentry Team and Contributors",
author_email="hello@sentry.io",
url="https://github.com/getsentry/sentry-python",
Expand Down

0 comments on commit 4fea13f

Please sign in to comment.