go-getoptions v0.11.0 Release Notes

Release Date: 2017-08-16 // over 6 years ago
  • ๐Ÿš€ As the releases before, this release has 100% test coverage.

    ๐Ÿ›  Fix go tip case sensitive import path:

    • davidgamba -> DavidGamba

    ๐Ÿ—„ Deprecate and rename redundant methods:

    StringSlice is redundant with StringSliceMulti.
    Calling:
    StringSlice(name, aliases...)
    Is the same as Calling:
    StringSliceMulti(name, 1, 1, aliases...)
    Consolidate API to:
    StringSlice(name, min, max, aliases...)

    StringMap is redundant with StringMapMulti.
    Calling:
    StringMap(name, aliases...)
    Is the same as Calling:
    StringMapMulti(name, 1, 1, aliases...)
    Consolidate API to:
    StringMap(name, min, max, aliases...)

    ๐Ÿ“‡ Rename IntSliceMulti to IntSlice.

    ๐Ÿ†• New features:

    โž• Add StringSliceVar and IntSliceVar methods.

    โž• Add option to SetMapKeysToLower.