Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/romellogoodman/changelog-cli
A cli tool for changeloging and versioning.
https://github.com/romellogoodman/changelog-cli
Last synced: 11 days ago
JSON representation
A cli tool for changeloging and versioning.
- Host: GitHub
- URL: https://github.com/romellogoodman/changelog-cli
- Owner: romellogoodman
- License: mit
- Created: 2016-09-19T21:35:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-24T00:57:20.000Z (over 7 years ago)
- Last Synced: 2024-12-13T20:58:29.151Z (about 2 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Changelog Cli
A command-line tool for writing changelogs (changelog.md) and incrementing versions in package.json
This module uses the module [semver](https://www.npmjs.com/package/semver) to follow the idea [semver](http://semver.org/).
```
$ npm i chagelog-cli -g$ changelog minor
```## Usage
#### Incrementing Options
| Name | Before | After |
|:-----------|:-------|:--------|
| major | 1.0.0 | 2.0.0 |
| minor | 1.0.0 | 1.1.0 |
| patch | 1.0.0 | 1.0.1 |
| premajor | 1.0.0 | 2.0.0-0 |
| preminor | 1.0.0 | 1.1.0-0 |
| prepatch | 1.0.0 | 1.0.1-0 |
| prerelease | 1.0.0 | 1.0.1-0 |#### Check Version
To check the current version of the module/project you are in.```
$ changelog check
```