bzumhagen / sct   0.11.1

MIT License GitHub

sct, the simple changelog tool

Scala versions: 2.12 2.11 2.10

sct Build Status Coverage Status

This repository houses the source code for sct, the simple changelog tool. It's a tool which allows a changelog to be generated based on version control system commits. We already should be writing good commit messages, so why not go a little farther, write commit messages a little better, and then automatically generate a changelog on demand.

Currently sct only supports projects which are using git and semantic versioning.

Getting Started

Currently there are two main ways you can use sct.

  1. Via build tool plugin - This is the recommended way to use sct. See https://github.com/bzumhagen/sbt-sct for a plugin for sbt. Maven plugin not currently available.
  2. Via source / source assembly - If you want to go this route, check out the rest of the steps below.

Prerequisites

  • Java 8
  • SBT
brew install sbt

Installing

Clone the repository

git clone https://github.com/bzumhagen/sct.git

CD into the project directory

cd sct

Compile the project

sbt compile

Run the project

sbt run

View the generated changelog

cat changelog.md

Running the tests

sbt test

Building jar with dependencies / assembly

sbt assembly

Built With

  • Dropwizard - The web framework used
  • Maven - Dependency Management
  • ROME - Used to generate RSS Feeds

Contributing

No contributing guide yet.

Versioning

We use SemVer for versioning.

Authors

  • Ben Zumhagen - Initial work - Github

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Thanks to KeepAChangelog for the formatting inspiration. Sorry I based the project around breaking the rule at the top of your page "Don’t let your friends dump git logs into changelogs."