Skip to content

Commit 1d97351

Browse files
committed
Bump version for next release
1 parent 419a1d1 commit 1d97351

29 files changed

+69
-55
lines changed

src/WaterPipe/Configuration/DefaultErrorLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

src/WaterPipe/Configuration/IErrorLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

src/WaterPipe/Configuration/StdErrorLogger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

src/WaterPipe/Exceptions/FileNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

src/WaterPipe/Exceptions/InternalServerErrorException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

@@ -38,4 +38,4 @@ public function __construct()
3838
{
3939
parent::__construct("Error 500: Internal Server Error.");
4040
}
41-
}
41+
}

src/WaterPipe/Exceptions/MissingHeaderException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

src/WaterPipe/Exceptions/NotFoundErrorException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

@@ -38,4 +38,4 @@ public function __construct()
3838
{
3939
parent::__construct("Error 404: Not Found Error.");
4040
}
41-
}
41+
}

src/WaterPipe/Exceptions/RequestException.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

@@ -40,4 +40,4 @@ public function __construct(string $message = "", int $code = 0, Throwable $prev
4040
{
4141
parent::__construct("The request was not sent. Error message: {$message}", $code, $previous);
4242
}
43-
}
43+
}

src/WaterPipe/Exceptions/RequestUriBuilderException.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,12 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

3333
namespace ElementaryFramework\WaterPipe\Exceptions;
3434

3535
class RequestUriBuilderException extends \Exception
3636
{
37-
38-
}
37+
}

src/WaterPipe/Exceptions/UnsupportedRequestMethodException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @author Axel Nana <[email protected]>
2727
* @copyright 2018 Aliens Group, Inc.
2828
* @license MIT <https://github.com/ElementaryFramework/WaterPipe/blob/master/LICENSE>
29-
* @version 1.3.0
29+
* @version 1.4.0
3030
* @link http://waterpipe.na2axl.tk
3131
*/
3232

0 commit comments

Comments
 (0)