-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a changelog to track changes to the project as they happen
This helps document what changed between releases. See Tech Team RFC-019: https://github.com/dxw/tech-team-rfcs/blob/master/rfc-019-use-changelogs-to-track-changes.md
- Loading branch information
Showing
5 changed files
with
55 additions
and
2 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
<!-- Do you need to update the changelog? --> | ||
|
||
## Changes in this PR | ||
|
||
## Screenshots of UI changes | ||
|
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,10 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog 1.0.0]. | ||
|
||
## [Unreleased] | ||
|
||
[unreleased]: TODO | ||
[keep a changelog 1.0.0]: https://keepachangelog.com/en/1.0.0/ |
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
27 changes: 27 additions & 0 deletions
27
...rchitecture/decisions/0002-use-a-changelog-for-tracking-changes-in-a-release.md
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,27 @@ | ||
# 2. Use a changelog for tracking changes in a release | ||
|
||
Date: 2019-09-13 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
Documenting changes for a release can be challenging. It often involves reading | ||
back through commit messages and PRs, looking for and classifying changes, which | ||
is a time consuming and error prone process. | ||
|
||
## Decision | ||
|
||
We will use a changelog (`CHANGELOG.md`) in the | ||
[Keep a Changelog 1.0.0](https://keepachangelog.com/en/1.0.0/) format to be | ||
updated when code changes happen, rather than at release time. | ||
|
||
## Consequences | ||
|
||
This will make compiling releases much simpler, as the process for determining | ||
changes in a release is simply a matter of looking at the changelog. | ||
|
||
This does add some overhead to making code changes, and requires that releases | ||
update the changelog as part of their process, but those overheads are small. |