You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
failure-message: 'Missing a changelog fragment in ${file-pattern}. Please add one using `scriv create` or apply the `${skip-label}` label to the pull request'
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,3 +45,9 @@ Line length in the one enforced by Black: 88 characters.
45
45
- The first sentence starts with a capital letter and ends with a point. This sentence is separated from the others by a blank line
46
46
- Docstrings must have :params: if the function has 2 or more arguments.
47
47
- All docstrings must state the return object and raised exception with :return: and :raise:
48
+
49
+
### Changelog
50
+
51
+
We use [scriv](https://github.com/nedbat/scriv) to manage our changelog. It is automatically installed by `pipenv install --dev`.
52
+
53
+
All user visible changes must be documented in a changelog fragment. You can create one with `scriv create`. If your pull request only contains non-visible changes (such as refactors or fixes for regressions introduced _after_ the latest release), then apply the `skip-changelog` label to the pull request.
Uncomment the section that is right (remove the HTML comment wrapper).
5
+
-->
6
+
7
+
<!--
8
+
### Removed
9
+
10
+
- A bullet item for the Removed category.
11
+
12
+
-->
13
+
<!--
14
+
### Added
15
+
16
+
- A bullet item for the Added category.
17
+
18
+
-->
19
+
<!--
20
+
### Changed
21
+
22
+
- A bullet item for the Changed category.
23
+
24
+
-->
25
+
<!--
26
+
### Deprecated
27
+
28
+
- A bullet item for the Deprecated category.
29
+
30
+
-->
31
+
32
+
### Fixed
33
+
34
+
- Python dependencies were not correctly defined: py-gitguardian was using `marshmallow-dataclass` and `click` without depending on them. The package now explicitly depends on `marshmallow-dataclass` and does not use `click` anymore (#43).
0 commit comments