From bf80eb0ae867661004a34eeeed02745c9a394862 Mon Sep 17 00:00:00 2001 From: lotfio Date: Sun, 26 Jul 2020 18:05:14 +0100 Subject: [PATCH] fix 1.6.2 --- CHANGELOG.md | 3 +++ README.md | 2 +- commands.php | 2 +- conso | 2 +- src/Conso/Command.php | 2 +- src/Conso/CommandInvoker.php | 2 +- src/Conso/CommandLinker.php | 2 +- src/Conso/Commands/Command.php | 2 +- src/Conso/Commands/stubs/command | 2 +- src/Conso/CommandsTable.php | 2 +- src/Conso/Conso.php | 2 +- src/Conso/ConsoTrait.php | 4 ++-- src/Conso/Contracts/CommandInterface.php | 2 +- src/Conso/Contracts/InputInterface.php | 2 +- src/Conso/Contracts/OutputInterface.php | 2 +- src/Conso/Exceptions/InputException.php | 2 +- src/Conso/Exceptions/InvokerException.php | 2 +- src/Conso/Exceptions/OutputException.php | 2 +- src/Conso/Input.php | 2 +- src/Conso/Output.php | 2 +- src/Conso/hlprs.php | 2 +- tests/Unit/CommandInvokerTest.php | 2 +- tests/Unit/CommandLinkerTest.php | 2 +- tests/Unit/CommandsTableTest.php | 2 +- tests/Unit/ConsoTest.php | 2 +- tests/Unit/InputTest.php | 2 +- tests/Unit/Mocks/Make.php | 2 +- tests/Unit/OutputTest.php | 2 +- 28 files changed, 31 insertions(+), 28 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c25b2a..2188c9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 1.6.2 + - fix register build in commands + # 1.6.1 - fix help - update readme diff --git a/README.md b/README.md index 973c1d7..596824b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

License PHP version - Version + Version Coverage Build Status StyleCi diff --git a/commands.php b/commands.php index fe4b555..e2401ef 100644 --- a/commands.php +++ b/commands.php @@ -3,7 +3,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/conso b/conso index 10bae7d..8d8f01d 100755 --- a/conso +++ b/conso @@ -5,7 +5,7 @@ * * @author * @package Conso PHP Console Creator - * @version 1.6.1 + * @version 1.6.2 * @license MIT * @category CLI * @copyright 2019 Lotfio Lakehal diff --git a/src/Conso/Command.php b/src/Conso/Command.php index 0697634..9014da8 100644 --- a/src/Conso/Command.php +++ b/src/Conso/Command.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/CommandInvoker.php b/src/Conso/CommandInvoker.php index bfbbf15..75b1533 100644 --- a/src/Conso/CommandInvoker.php +++ b/src/Conso/CommandInvoker.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/CommandLinker.php b/src/Conso/CommandLinker.php index 0a363da..b69135d 100644 --- a/src/Conso/CommandLinker.php +++ b/src/Conso/CommandLinker.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Commands/Command.php b/src/Conso/Commands/Command.php index 8c96a15..24fb14c 100644 --- a/src/Conso/Commands/Command.php +++ b/src/Conso/Commands/Command.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Commands/stubs/command b/src/Conso/Commands/stubs/command index 2f96718..e54bf1f 100644 --- a/src/Conso/Commands/stubs/command +++ b/src/Conso/Commands/stubs/command @@ -4,7 +4,7 @@ * * @author * @package Conso PHP Console Creator - * @version 1.6.1 + * @version 1.6.2 * @license MIT * @category CLI * @copyright 2019 Lotfio Lakehal diff --git a/src/Conso/CommandsTable.php b/src/Conso/CommandsTable.php index 36a555d..3c686a3 100644 --- a/src/Conso/CommandsTable.php +++ b/src/Conso/CommandsTable.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Conso.php b/src/Conso/Conso.php index d26f007..a2d296a 100644 --- a/src/Conso/Conso.php +++ b/src/Conso/Conso.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/ConsoTrait.php b/src/Conso/ConsoTrait.php index f0d5eb7..9076b13 100644 --- a/src/Conso/ConsoTrait.php +++ b/src/Conso/ConsoTrait.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * @@ -40,7 +40,7 @@ trait ConsoTrait * * @var string */ - protected $version = '1.6.1'; + protected $version = '1.6.2'; /** * author. diff --git a/src/Conso/Contracts/CommandInterface.php b/src/Conso/Contracts/CommandInterface.php index 01aa3a3..e914714 100644 --- a/src/Conso/Contracts/CommandInterface.php +++ b/src/Conso/Contracts/CommandInterface.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Contracts/InputInterface.php b/src/Conso/Contracts/InputInterface.php index d620979..d6b760a 100644 --- a/src/Conso/Contracts/InputInterface.php +++ b/src/Conso/Contracts/InputInterface.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Contracts/OutputInterface.php b/src/Conso/Contracts/OutputInterface.php index 686e825..035f96d 100644 --- a/src/Conso/Contracts/OutputInterface.php +++ b/src/Conso/Contracts/OutputInterface.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Exceptions/InputException.php b/src/Conso/Exceptions/InputException.php index a2cec34..9486c7a 100644 --- a/src/Conso/Exceptions/InputException.php +++ b/src/Conso/Exceptions/InputException.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Exceptions/InvokerException.php b/src/Conso/Exceptions/InvokerException.php index 21a340c..510c58f 100644 --- a/src/Conso/Exceptions/InvokerException.php +++ b/src/Conso/Exceptions/InvokerException.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Exceptions/OutputException.php b/src/Conso/Exceptions/OutputException.php index 5ee38d3..c069c3c 100644 --- a/src/Conso/Exceptions/OutputException.php +++ b/src/Conso/Exceptions/OutputException.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Input.php b/src/Conso/Input.php index 06344cb..38faa07 100644 --- a/src/Conso/Input.php +++ b/src/Conso/Input.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/Output.php b/src/Conso/Output.php index 0ae2948..b5cb146 100644 --- a/src/Conso/Output.php +++ b/src/Conso/Output.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/src/Conso/hlprs.php b/src/Conso/hlprs.php index 5de407f..c88444d 100644 --- a/src/Conso/hlprs.php +++ b/src/Conso/hlprs.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/CommandInvokerTest.php b/tests/Unit/CommandInvokerTest.php index 48a65b7..2f3caf7 100644 --- a/tests/Unit/CommandInvokerTest.php +++ b/tests/Unit/CommandInvokerTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/CommandLinkerTest.php b/tests/Unit/CommandLinkerTest.php index 2b053d3..63e1b70 100644 --- a/tests/Unit/CommandLinkerTest.php +++ b/tests/Unit/CommandLinkerTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/CommandsTableTest.php b/tests/Unit/CommandsTableTest.php index 0df1a28..795440f 100644 --- a/tests/Unit/CommandsTableTest.php +++ b/tests/Unit/CommandsTableTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/ConsoTest.php b/tests/Unit/ConsoTest.php index 6d146da..06b3447 100644 --- a/tests/Unit/ConsoTest.php +++ b/tests/Unit/ConsoTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/InputTest.php b/tests/Unit/InputTest.php index f24390a..e88712d 100644 --- a/tests/Unit/InputTest.php +++ b/tests/Unit/InputTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/Mocks/Make.php b/tests/Unit/Mocks/Make.php index a7036ad..20d40a2 100644 --- a/tests/Unit/Mocks/Make.php +++ b/tests/Unit/Mocks/Make.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT * diff --git a/tests/Unit/OutputTest.php b/tests/Unit/OutputTest.php index 636e0e5..199f713 100644 --- a/tests/Unit/OutputTest.php +++ b/tests/Unit/OutputTest.php @@ -5,7 +5,7 @@ /** * @author * - * @version 1.6.1 + * @version 1.6.2 * * @license MIT *