Changelog-Rust

This tool is written in rust to be light weight and portable cli for the management and generation of chagelogs for software realease. The idea is to create a way for developers to maintain an up to date changelog with minimal overhead and great integration into CI/CD (agnostic tool that can be used in any CI/CD solution). The idea is for developers to create change files for every story/issue/task/bug/feature (depending of planning tooling the name differs). This prevents uglier solutions of messy git conflict when all developers change a single changelog file. Allows for nice auto generation of changelog file based on predefined template

Installation

Go to the downloads page for the latest release at: https://github.com/adam-bratin/changelog-rs/releases/latest Download correct version of OS. NOTE You may neeed to give the executable execute permissions

Usage

```bash changelog

USAGE: changelog-rust [OPTIONS]

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: -c path to config file [default: ./.changelogrc]

SUBCOMMANDS: generate generate chagefile for PR help Prints this message or the help of the given subcommand(s) init initialize repo with setup for changelog cli merge merges all the change files into an changelog from template ```

Init

The init command is used to setup a repo to use the cli tool

```bash USAGE: changelog-rust init [OPTIONS] --appName

FLAGS: -h, --help Prints help information -V, --version Prints version information

OPTIONS: -n, --appName name of app -i path where change files will be located [default: ./changes/] -t