Skip to content

Commit 8c7c1a2

Browse files
authored
Merge release/0.7.6 into master
2 parents 41a7db9 + f2b6799 commit 8c7c1a2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
)
4343

4444

45-
VERSION = "0.7.5"
45+
VERSION = "0.7.6"
4646
DEFAULT_SERVER_NAME = socket.gethostname() if hasattr(socket, "gethostname") else None
4747
DEFAULT_OPTIONS = {
4848
"dsn": None,

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="sentry-sdk",
15-
version="0.7.5",
15+
version="0.7.6",
1616
author="Sentry Team and Contributors",
1717
author_email="[email protected]",
1818
url="https://github.com/getsentry/sentry-python",

tests/integrations/django/test_basic.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,6 @@ def test_template_exception(sentry_init, client, capture_events):
338338
filenames = [
339339
(f.get("function"), f.get("module")) for f in exception["stacktrace"]["frames"]
340340
]
341-
assert filenames[1] == (u"template_exc", u"tests.integrations.django.myapp.views")
342341
assert filenames[-3:] == [
343342
(u"parse", u"django.template.base"),
344343
(None, None),

0 commit comments

Comments
 (0)