Skip to content

Commit 5694e11

Browse files
committed
release: 2.0.0a2
1 parent 1e1daf1 commit 5694e11

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

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

3+
## 2.0.0a2
4+
5+
### Various fixes & improvements
6+
7+
- Fork test_tracedecorator_async (#2778) by @sentrivana
8+
- More compatibility tests (#2772) by @antonpirker
9+
- Allow to configure merge target for releases (#2777) by @sentrivana
10+
- fix(docs): allow empty character in metric tags values (#2775) by @viglia
11+
- fix(metrics): Replace invalid tag values with an empty string instead of _ (#2773) by @markushi
12+
- docs: Add documentation comment to `scrub_list` (#2769) by @szokeasaurusrex
13+
- ref(scrubber): Add recursive scrubbing to EventScrubber (#2755) by @Cheapshot003
14+
- Fixed regex to parse version in lambda package file (#2767) by @sentrivana
15+
- Temporarily disable tests for alpha release (fa5f50b0) by @antonpirker
16+
- channel link (0594cfa5) by @antonpirker
17+
- Added note to README (cdf4f901) by @antonpirker
18+
- Updated migration guide (ad4ff19c) by @antonpirker
19+
- ref(api): Abstract base classes (#2667) by @szokeasaurusrex
20+
- Scope refactoring (merge Hubs and Scopes) (#2610) by @antonpirker
21+
- docs: Update readme, migration guide (#2754) by @sentrivana
22+
- Remove PY2 (8aa95995) by @sentrivana
23+
- Added last_event_id() to the stuff that has been removed. (93f89e00) by @antonpirker
24+
- ref: Use new-style super() (#2744) by @sentrivana
25+
- ref(docs): Tweak migration guide (#2742) by @sentrivana
26+
- fix(metrics): Fix typo (#2735) by @sentrivana
27+
- Deprecate profiler `_experiments` options (#2737) by @sentrivana
28+
- Remove `user.segment` (#2726) by @sentrivana
29+
- ref(transport): Remove compatibility import (#2698) by @sentrivana
30+
- Typo (#2690) by @sentrivana
31+
32+
_Plus 22 more_
33+
334
## 1.40.6
435

536
### Various fixes & improvements

docs/conf.py

Lines changed: 1 addition & 1 deletion
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 = "1.40.6"
31+
release = "2.0.0a2"
3232
version = ".".join(release.split(".")[:2]) # The short X.Y version.
3333

3434

sentry_sdk/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,4 +326,4 @@ def _get_default_options():
326326
del _get_default_options
327327

328328

329-
VERSION = "1.40.6"
329+
VERSION = "2.0.0a2"

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.40.6",
24+
version="2.0.0a2",
2525
author="Sentry Team and Contributors",
2626
author_email="[email protected]",
2727
url="https://github.com/getsentry/sentry-python",

0 commit comments

Comments
 (0)