8000 GitHub - anchore/chronicle at v0.3.0
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

a fast changelog generator sourced from PRs and Issues

License

Notifications You must be signed in to change notification settings

anchore/chronicle

Repository files navigation

chronicle

Validations Go Report Card GitHub release GitHub go.mod Go version License: Apache-2.0 Slack Invite

A fast changelog generator that sources changes from GitHub PRs and issues, organized by labels.

# create a changelog from the last GitHib release until the current git HEAD tag/commit
# for the git repo in the current directory
chronicle 

# create a changelog with all changes from v0.16.0 until current git HEAD tag/commit
# for the git repo in the current directory
chronicle --since-tag v0.16.0

# create a changelog between two specific tags for a repo at the given path
chronicle --since-tag v0.16.0 --until-tag v0.18.0 ./path/to/git/repo

Installation

curl -sSfL https://raw.githubusercontent.com/anchore/chronicle/main/install.sh | sh -s -- -b /usr/local/bin

...or, you can specify a release version and destination directory for the installation:

curl -sSfL https://raw.githubusercontent.com/anchore/chronicle/main/install.sh | sh -s -- -b <DESTINATION_DIR> <RELEASE_VERSION>
0