- Add type annotations to braceexpand function
- Fix char range ending with 'A' expanding to empty list
- Fix handling of character range with increment '0'
- Fix deprecation warnings due to invalid escape sequences.
- Don't pad int range when start or end is '-0'
- Fix handling of range with increment '0'
- Add support for negative integers in ranges
-
Fix bug where patterns nested inside an extra level of braces were not further expanded.
For example,
{{a,b}}
now correctly expands to{a} {b}
. -
Drop support for Python 2.6
- Dont pad int range when start or end is '0'
- Updated list of supported Python versions
- Initial release