All Projects → phly → Keep A Changelog

phly / Keep A Changelog

Licence: bsd-2-clause
Tools for manipulating CHANGELOG.md files in Keep A Changelog format, including tagging and releasing.

Projects that are alternatives of or similar to Keep A Changelog

Npm Upgrade
Interactive CLI utility to easily update outdated NPM dependencies
Stars: ✭ 245 (+58.06%)
Mutual labels:  cli, changelog
Standard Version
🏆 Automate versioning and CHANGELOG generation, with semver.org and conventionalcommits.org
Stars: ✭ 5,806 (+3645.81%)
Mutual labels:  cli, changelog
Gitmoji Changelog
A changelog generator for gitmoji 😜
Stars: ✭ 250 (+61.29%)
Mutual labels:  cli, changelog
Fugitive
Simple command line tool to make git more intuitive, along with useful GitHub addons.
Stars: ✭ 20 (-87.1%)
Mutual labels:  cli, changelog
Release It
🚀 Automate versioning and package publishing
Stars: ✭ 4,773 (+2979.35%)
Mutual labels:  cli, changelog
Git Chglog
CHANGELOG generator implemented in Go (Golang).
Stars: ✭ 1,895 (+1122.58%)
Mutual labels:  cli, changelog
Maintainer
👨‍💻 🐳 Generate personal daily reports or summary, AUTHORS, CONTRIBUTING, CHANGELOG and so on for GitHub user or repository.
Stars: ✭ 152 (-1.94%)
Mutual labels:  changelog
Aeneas
aeneas is a Python/C library and a set of tools to automagically synchronize audio and text (aka forced alignment)
Stars: ✭ 1,942 (+1152.9%)
Mutual labels:  cli
Deno Cliffy
Command line framework for deno 🦕 Including Commandline-Interfaces, Prompts, CLI-Table, Arguments Parser and more...
Stars: ✭ 149 (-3.87%)
Mutual labels:  cli
Gitin
commit/branch/workdir explorer for git
Stars: ✭ 1,815 (+1070.97%)
Mutual labels:  cli
Fastscript
A fast way to turn your python function into a script
Stars: ✭ 155 (+0%)
Mutual labels:  cli
Upx
UPYUN Storage Command Tool
Stars: ✭ 154 (-0.65%)
Mutual labels:  cli
Pully
A simple CLI and library for downloading high quality YouTube videos!
Stars: ✭ 153 (-1.29%)
Mutual labels:  cli
Grafcli
Grafana CLI for quick and easy dashboards management.
Stars: ✭ 152 (-1.94%)
Mutual labels:  cli
Cbox
convert any python function to unix-style command
Stars: ✭ 154 (-0.65%)
Mutual labels:  cli
Swiftcolorgen
A tool that generate code for Swift projects, designed to improve the maintainability of UIColors
Stars: ✭ 152 (-1.94%)
Mutual labels:  cli
Psql2csv
Run a query in psql and output the result as CSV.
Stars: ✭ 153 (-1.29%)
Mutual labels:  cli
Defopt
Effortless argument parser
Stars: ✭ 150 (-3.23%)
Mutual labels:  cli
Gloria
Gloria is a static website generator, based on NodeJS.
Stars: ✭ 153 (-1.29%)
Mutual labels:  cli
Sqsmover
AWS SQS Message mover
Stars: ✭ 154 (-0.65%)
Mutual labels:  cli

keep-a-changelog

Build Status Coverage Status

This project provides tooling support for working with Keep A Changelog.

Installation

Local install via Composer

Run the following to install this library:

$ composer require phly/keep-a-changelog

Global install via Composer

Alternately, install globally, for use with any repository:

$ composer global require phly/keep-a-changelog

If you install globally, ensure you add global composer vendor binaries directory to your $PATH environment variable. You can get its location with following command:

$ composer global config bin-dir --absolute

You can add the following line to your shell profile to auto-add it to your PATH:

export PATH=$(composer global config bin-dir --absolute):$PATH

Once setup this way, you can call keep-a-changelog instead of ./vendor/bin/keep-a-changelog.

PHAR file

Since version 2.3.0, we have offered standalone PHAR binaries. These are available under the downloads section for each release. To retrieve the latest, you can always use the following url:

Make the file executable (e.g., chmod 755 keep-a-changelog.phar), place it in your $PATH, and, optionally, remove the .phar suffix

At the time of writing, the PHAR distribution is not yet capable of self-updating or checking for updates.

Usage

Invocation will be via one of the following:

  • If you have installed via Composer within your project: ./vendor/bin/keep-a-changelog
  • If you have installed globally via Composer, and have added the Composer script path to your $PATH: keep-a-changelog.
  • If you have downloaded the PHAR file and put it in your $PATH: either keep-a-changelog.phar or, if you removed the .phar file extension, keep-a-changelog.

From here forward, we will use keep-a-changelog to invoke the command; substitute the appropriate command invocation based on your install.

You may get a list of commands by running:

$ keep-a-changelog

From there, you can get help for individual commands using:

$ keep-a-changelog help <command>

For more information, please visit the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].