com.github.ngeor.yak4jcli.SemVerBump Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yak4j-cli Show documentation
Show all versions of yak4j-cli Show documentation
Interactive CLI for yak4j
package com.github.ngeor.yak4jcli;
/**
* Describes the different ways a version can be bumped using semantic versioning.
*/
public enum SemVerBump {
/**
* Major version bump.
*/
MAJOR,
/**
* Minor version bump.
*/
MINOR,
/**
* Patch version bump.
*/
PATCH
}