python-click/python-click.changes

51 lines
2.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-------------------------------------------------------------------
Sat Jul 18 17:17:10 UTC 2015 - aloisio@gmx.com
- Update to version 4.1
* Fix a bug where error messages would include a trailing
None string.
* Fix a bug where Click would crash on docstrings with
trailing newlines.
Version 4.0:
* Added color parameters to lots of interfaces that directly
or indirectly call into echoing. This previously was always
autodetection (with the exception of the echo_via_pager
function). Now you can forcefully enable or disable it,
overriding the auto detection of Click.
* Added an UNPROCESSED type which does not perform any type
changes which simplifies text handling on 2.x / 3.x in
some special advanced usecases.
* Added NoSuchOption and BadOptionUsage exceptions for more
generic handling of errors.
* Added support for handling of unprocessed options which
can be useful in situations where arguments are forwarded
to underlying tools.
* Added max_content_width parameter to the context which
can be used to change the maximum width of help output.
By default Click will not format content for more than
80 characters width.
* Added support for writing prompts to stderr.
* Fix a bug when showing the default for multiple arguments.
* Added support for custom subclasses to option and argument.
* Fix bug in clear() on Windows when colorama is installed.
* Reject nargs=-1 for options properly. Options cannot be
variadic.
* Fixed an issue with bash completion not working properly
for commands with non ASCII characters or dashes.
* Added a way to manually update the progressbar.
* Changed the formatting of missing arguments. Previously
the internal argument name was shown in error messages,
now the metavar is shown if passed. In case an automated
metavar is selected, its stripped of extra formatting first.
-------------------------------------------------------------------
Tue Aug 26 11:22:44 UTC 2014 - p.drouand@gmail.com
- Fix %description
-------------------------------------------------------------------
Tue Aug 26 02:37:06 UTC 2014 - lowks@lowkster.com
- Initial package of python-click