All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.ngeor.yak4jcli.SemVerBump Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy