Release notes management tool
Go to file
Doug Hellmann 6858d84941 add report command
Change-Id: Iffc4e6bcf0b3f4ae0d9af483f1eb0bcb8aa72b40
2015-08-27 18:06:32 +00:00
doc/source Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
reno add report command 2015-08-27 18:06:32 +00:00
.coveragerc Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
.gitignore Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
.gitreview Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
.mailmap Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
.testr.conf Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
babel.cfg Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
CONTRIBUTING.rst Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
HACKING.rst Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
LICENSE Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
MANIFEST.in Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
openstack-common.conf Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
README.rst transcribe design ideas into readme 2015-08-26 21:20:46 +00:00
requirements.txt add report command 2015-08-27 18:06:32 +00:00
setup.cfg add main program and command for creating a new note file 2015-08-27 12:57:42 +00:00
setup.py Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
test-requirements.txt Initial Cookiecutter Commit. 2015-08-26 20:04:56 +00:00
tox.ini remove py33 from default tox environments 2015-08-26 21:02:02 +00:00

reno -- Release Notes Manager

Reno is a release notes manager for storing release notes in a git repository and then building documentation from them.

Design

Managing release notes for a complex project over a long period of time with many releases can be time consuming and error prone. Reno helps automate the hard parts by devising a way to store the notes inside the git repository where they can be tagged as part of the release.

We had several design inputs:

  • Release notes should be part of the git history, so as fixes in master are back-ported to older branches the notes can go with the code change.

  • Release notes may need to change over time, as typos are found, logical errors or confusing language needs to be fixed, or as more information becomes available (CVE numbers, etc.).

  • Release notes should be peer-reviewed, as with other documentation and code changes.

  • Notes are mutable in that a clone today vs a clone tomorrow might have different release notes about the same change.

  • Notes are immutable in that for a given git hash/tag the release notes will be the same. Tagging a commit will change the version description but that is all.

  • We want to avoid merge issues when shepherding in a lot of release-note-worthy changes, which we expect to happen on stable branches always, and at release times on master branches.

  • We want writing a release note to be straight-forward.

  • We do not want release notes to be custom ordered within a release, but we do want the ordering to be predictable and consistent.

  • We must be able to entirely remove a release note.

  • We must not make things progressively slow down to a crawl over years of usage.

  • Release note authors shouldn't need to know any special values for naming their notes files (i.e., no change id or SHA value that has special meaning).

  • It would be nice if it was somewhat easy to identify the file containing a release note on a particular topic.

  • Release notes should be grouped by type in the output document.

    1. New features
    2. Known issues
    3. Upgrade notes
    4. Security fixes
    5. Bugs fixes
    6. Other

We want to eventually provide the ability to create a release notes file for a given release and add it to the source distribution for the project. As a first step, we are going to settle for publishing release notes in the documentation for a project.

Project Meta-data

Features

  • TODO