A library for generating a conventional changelog from git metadata, written in Rust
clog
creates a changelog automatically from your local git metadata. See the clog
s changelog.md for an example.
The way this works, is every time you make a commit, you ensure your commit subject line follows the conventional format.
NOTE: clog
also supports empty components by making commit messages such as alias: message
or alias(): message
(i.e. without the component)
There are two ways to use clog
, as a binary via the command line (See clog-cli for details) or as a library in your applicaitons.
See the documentation for information on using clog
in your applications.
In order to see it in action, you'll need a repository that already has some of those specially crafted commit messages in it's history. For this, we'll use the clog
repository itself.
clog-lib
repository (we will clone to our home directory to make things simple, feel free to change it)sh
$ git clone https://github.com/thoughtram/clog ~/clog
clog
as a dependency in your Cargo.toml
toml
[dependencies]
clog = "*"
src/main.rs
```rust extern crate clog;
use clog::Clog;
fn main() { // Create the struct let mut clog = Clog::withdir("~/clog").unwrapor_else(|e| { // Prints the error message and exits e.exit(); });
// Set some options
clog.repository("https://github.com/thoughtram/clog")
.subtitle("Crazy Dog")
.changelog("changelog.md")
.from("6d8183f")
.version("0.1.0");
// Write the changelog to the current working directory
//
// Alternatively we could have used .write_changelog_to("/somedir/some_file.md")
clog.write_changelog().unwrap_or_else(|e| {
e.exit();
});
} ```
$ vim changelog.md
clog
can also be configured using a default configuration file so that you don't have to specify all the options each time you want to update your changelog. To do this add a .clog.toml
file to your repository.
```toml [clog]
repository = "https://github.com/thoughtram/clog"
subtitle = "my awesome title"
link-style = "github"
#
#
changelog = "mychangelog.md"
#
#
outfile = "MyChangelog.md"
#
infile = "Myoldchangelog.md"
output-format = "json"
from-latest-tag = true ```
By default, clog
will display three sections in your changelog, Features
, Performance
, and Bug Fixes
. You can add additional sections by using a .clog.toml
file. To add more sections, simply add a [sections]
table, along with the section name and aliases you'd like to use in your commit messages:
toml
[sections]
MySection = ["mysec", "ms"]
Now if you make a commit message such as mysec(Component): some message
or ms(Component): some message
there will be a new "MySection" section along side the "Features" and "Bug Fixes" areas.
NOTE: Sections with spaces are suppported, such as "My Special Section" = ["ms", "mysec"]
clog is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository.