A tool for modifying the "standard pony" changelog
Production ready.
The changelog-tool requires pony-stable to be installed.
git clone https://github.com/ponylang/changelog-tool
cd changelog-tool
make
sudo make install
changelog-tool new
changelog-tool verify
CHANGELOG.md is a valid changelog.
changelog-tool get 0.2.2
## [0.2.2] - 2018-01-16
### Added
- Many prior version. This was added as first entry in CHANGELOG when it was added to this project.
changelog-tool unreleased -e
changelog-tool add fixed 'We fixed some bad issues' -e
changelog-tool add added 'We just added some new cool stuff' -e
changelog-tool add changed 'And changed things a bit' -e
changelog-tool release 0.13.1
# The changelog-tool release command prints the new changelog to standard output
# -e should be used to modify the changelog file.
Example CHANGELOG.md (before):
# Change Log
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com/).
## [unreleased] - unreleased
### Fixed
### Added
- We are only adding things on this release
### Changed
Example CHANGELOG.md (after):
# Change Log
All notable changes to the Pony compiler and standard library will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com/).
## [0.13.1] - 2017-04-14
### Added
- We are only adding things on this release
Note that a new unreleased area has been added to the top of the changelog and only the Added
section of the previous unreleased area has been included in the 0.13.1 release since the other two sections had no entries.