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

https://github.com/threecommaio/sembump

Bump to the next semver as input
https://github.com/threecommaio/sembump

Last synced: 11 months ago
JSON representation

Bump to the next semver as input

Awesome Lists containing this project

README

          

# sembump
Takes a semver and bump type `major, minor, patch` and increments it.

## Install
```
$ go get github.com/threecommaio/sembump
```

## Usage
```
$ sembump
usage: sembump

$ sembump v1.2.0 major
v2.2.1

$ sembump v1.2.0 minor
v1.3.1

$ sembump v1.2.0 patch
v1.2.1
```