diff --git a/CHANGES.rst b/CHANGES.rst index 2f160beb9..273c00f9e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,17 @@ .. currentmodule:: click +Version 7.1.2 +------------- + +Released 2020-04-27 + +- Revert applying shell quoting to commands for ``echo_with_pager`` + and ``edit``. This was intended to allows spaces in commands, but + caused issues if the string was actually a command and arguments, or + on Windows. Instead, the string must be quoted manually as it should + appear on the command line. :issue:`1514` + + Version 7.1.1 ------------- diff --git a/src/click/__init__.py b/src/click/__init__.py index 3910b8032..2b6008f2d 100644 --- a/src/click/__init__.py +++ b/src/click/__init__.py @@ -76,4 +76,4 @@ # literals. disable_unicode_literals_warning = False -__version__ = "7.1.1" +__version__ = "7.1.2"