diff --git a/CHANGELOG.md b/CHANGELOG.md index 90b8e21..c639f10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 1.0.7 - * WIP + * Issue #6: Solve `proc_open()` pipe configuration for both, Windows / Linux ## 1.0.6 diff --git a/README.md b/README.md index 89d84c2..231f8ed 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ pass `command`, `execCommand` and `args` as options. This will call the respecti which will create the option "--exclude 'val1' 'val2'". * `$escape`: If set, this overrides the `$escapeArgs` setting and enforces escaping/no escaping * `getOutput()`: The command output as string. Empty if none. - * `getError()`: The error message, either stderr or internal message. Empty if none. + * `getError()`: The error message, either stderr or internal message. Empty if no error. * `getStdErr()`: The stderr output. Empty if none. * `getExitCode()`: The exit code. * `getExecuted()`: Whether the command was successfully executed. diff --git a/src/Command.php b/src/Command.php index f57fcef..a349047 100644 --- a/src/Command.php +++ b/src/Command.php @@ -7,7 +7,7 @@ * This class represents a shell command. * * @author Michael Härtl - * @version 1.0.7-dev + * @version 1.0.7 * @license http://www.opensource.org/licenses/MIT */ class Command