You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # 0.8.3
  2. - changes dependency from `wordwrap` to `word-wrap` due to license issue
  3. - update dependencies
  4. # 0.8.2
  5. - fix bug #18 - detect missing value when flag is last item
  6. - update dependencies
  7. # 0.8.1
  8. - update `fast-levenshtein` dependency
  9. # 0.8.0
  10. - update `levn` dependency - supplying a float value to an option with type `Int` now throws an error, instead of silently converting to an `Int`
  11. # 0.7.1
  12. - fix bug with use of `defaults` and `concatRepeatedArrays` or `mergeRepeatedObjects`
  13. # 0.7.0
  14. - added `concatrepeatedarrays` option: `oneValuePerFlag`, only allows one array value per flag
  15. - added `typeAliases` option
  16. - added `parseArgv` which takes an array and parses with the first two items sliced off
  17. - changed enum help style
  18. - bug fixes (#12)
  19. - use of `concatRepeatedArrays` and `mergeRepeatedObjects` at the top level is deprecated, use it as either a per-option option, or set them in the `defaults` object to set them for all objects
  20. # 0.6.0
  21. - added `defaults` lib-option flag, allowing one to set default properties for all options
  22. - added `concatRepeatedArrays` and `mergeRepeatedObjects` as option level properties, allowing you to turn this feature on for specific options only
  23. # 0.5.0
  24. - `Boolean` flags with `default: 'true'`, and no short aliases, will by default show the `--no` version in help
  25. # 0.4.0
  26. - add `mergeRepeatedObjects` setting
  27. # 0.3.0
  28. - add `concatRepeatedArrays` setting
  29. - add `overrideRequired` option setting
  30. - use just Levenshtein string compare algo rather than Levenshtein Damerau to due dependency license issue
  31. # 0.2.2
  32. - bug fixes
  33. # 0.2.1
  34. - improved interpolation
  35. - added changelog
  36. # 0.2.0
  37. - add dependency checks to options - added `dependsOn` as an option property
  38. - add interpolation for `prepend` and `append` text with new `generateHelp` option, `interpolate`
  39. # 0.1.1
  40. - update dependencies
  41. # 0.1.0
  42. - initial release