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
- Host: GitHub
- URL: https://github.com/threecommaio/sembump
- Owner: threecommaio
- Created: 2020-01-11T05:21:05.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-11T05:35:04.000Z (over 6 years ago)
- Last Synced: 2024-12-28T07:26:35.257Z (over 1 year ago)
- Language: Go
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```