forked from cvat-ai/cvat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using scriv for maintaining the changelog (cvat-ai#6942)
This is beneficial in multiple ways: * No more `CHANGELOG.md` merge conflicts and mis-merges. * At release time all you need to do to update the changelog is run `scriv collect --version X.Y.Z`. Scriv can also create GitHub releases, although I haven't evaluated this feature yet. Configure scriv so that its output format is the same as what we currently use for our changelog. There are only a few minor differences: * scriv prepends an HTML anchor to every version heading. * scriv puts blank lines between list items (in CommonMark terms, the lists are loose rather than tight).
- Loading branch information
Showing
5 changed files
with
29 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
### {{ config.categories | join('|') }} <!-- pick one --> | ||
|
||
- Describe your change here... | ||
(<https://github.com/opencv/cvat/pull/XXXX>) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
### Added | ||
|
||
- The latest comment displayed in issues sidebar (<https://github.com/opencv/cvat/pull/6937>) | ||
|
||
### Fixed | ||
|
||
- It was not possible to copy issue comment from issue dialog (<https://github.com/opencv/cvat/pull/6937>) | ||
|
||
### Security | ||
|
||
- Update Grafana from 9.3.6 to 10.1.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[scriv] | ||
categories = Added, Changed, Deprecated, Removed, Fixed, Security | ||
entry_title_template = \[{{ version }}\] - {{ date.strftime('%%Y-%%m-%%d') }} | ||
format = md | ||
md_header_level = 2 | ||
new_fragment_template = file: fragment.j2 |