Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/taskmedia/bump-version
https://github.com/taskmedia/bump-version
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/taskmedia/bump-version
- Owner: taskmedia
- License: mit
- Created: 2022-05-27T09:32:08.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-30T20:53:34.000Z (over 2 years ago)
- Last Synced: 2024-06-21T08:05:44.714Z (5 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 |