Last active
March 31, 2020 15:11
-
-
Save felixfontein/d15112c7a866e8806d7e9f9ea4085cfa to your computer and use it in GitHub Desktop.
Changelog idea
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
# Encoding: must be UTF-8 | |
# Entries must be reStructuredText (https://en.wikipedia.org/wiki/ReStructuredText) | |
meta: | |
extends: | |
file: changelog-1.x.yml | |
branch: stable-1.x # optional, in case previous changelog is in another branch | |
versions: | |
2.0.0: | |
minor_changes: | |
- "module_1 - added new option ``test``" | |
- "module_2 - extended option ``foo``" | |
- "All bar modules require library foo >= 3.1.4" | |
bugfixes: | |
- "module_2 - fix crash when ``bar < 0``" | |
upgrade: # porting guide | |
- title: Major Change in Foo Modules | |
content: | | |
There is a major change in all foo_* modules. | |
... | |
2.1.0: | |
bugfixes: | |
- "module_1 - fix crash when ``bar <= 0``" | |
2.1.1: | |
bugfixes: | |
- "module_3 - error during validation" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment