Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/taskmedia/bump-version


https://github.com/taskmedia/bump-version

Last synced: 5 days ago
JSON representation

Awesome Lists containing this project

README

        

# bump version

This minimal cli tool returns the next version depending on the given level (`patch`, `minor` or `major`)

## usage

```bash
$ ./bump-version -v "v1.2.3" -l "minor"
v1.3.0
```

## examples

Output versions on version `v1.2.3` on different levels given:

| level | version |
| ----- | ------- |
| patch | v1.2.4 |
| minor | v1.3.0 |
| major | v2.0.0 |