UpdateType

public enum UpdateType

Update type, based on comparison of two semantic versions, i.e. 1.1.1 < 2.0.0

  • MAJOR update, i.e. first number(X.y.z) is larger

    Declaration

    Swift

    case major
  • MINOR update, i.e. second number(x.Y.z) is larger

    Declaration

    Swift

    case minor
  • PATCH update, i.e. third number(x.y.Z) is larger

    Declaration

    Swift

    case patch
  • Not an update, i.e. versions are equal

    Declaration

    Swift

    case none