File tree Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Expand file tree Collapse file tree 1 file changed +28
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog and versioning
2
+
3
+ ## Versioning Policy
4
+
5
+ This project follows [ semver] ( https://semver.org/ ) , with three additions:
6
+
7
+ * Semver says that major version ` 0 ` can include breaking changes at any time.
8
+ Still, it is common practice to assume that only ` 0.x ` releases (minor
9
+ versions) can contain breaking changes while ` 0.x.y ` releases (patch
10
+ versions) are used for backwards-compatible changes (bugfixes and features).
11
+ This project also follows that practice.
12
+
13
+ * All undocumented APIs are considered internal. They are not part of this
14
+ contract.
15
+
16
+ * Certain features (e.g. integrations) may be explicitly called out as
17
+ "experimental" or "unstable" in the documentation. They come with their own
18
+ versioning policy described in the documentation.
19
+
20
+ We recommend to pin your version requirements against ` 0.x.* ` or ` 0.x.y ` .
21
+ Either one of the following is fine:
22
+
23
+ ```
24
+ sentry-sdk>=0.10.0,<0.11.0
25
+ sentry-sdk==0.10.1
26
+ ```
27
+
1
28
## 0.10.1
2
29
3
30
* Fix bug where the SDK would yield a deprecation warning about
22
49
23
50
* Revert a change in 0.9.3 that prevented passing a `` unicode ``
24
51
string as DSN to `` init() `` .
52
+
25
53
## 0.9.3
26
54
27
55
* Add type hints for `` init() `` .
49
77
* Fix distribution information for mypy support (add ` py.typed ` file). Thanks
50
78
Ran Benita!
51
79
52
-
53
80
## 0.9.0
54
81
55
82
* The SDK now captures ` SystemExit ` and other ` BaseException ` s when coming from
You can’t perform that action at this time.
0 commit comments