From 8aff19a2ea687e94869616349af43deb910ebfd3 Mon Sep 17 00:00:00 2001 From: Ignace Nyamagana Butera Date: Wed, 19 Apr 2017 10:50:57 +0200 Subject: [PATCH] 1.0.4 release --- .scrutinizer.yml | 18 ------------------ .travis.yml | 4 ---- CHANGELOG.md | 2 +- src/AbstractUri.php | 6 ++++-- src/Data.php | 6 ++++-- src/File.php | 6 ++++-- src/Ftp.php | 6 ++++-- src/Http.php | 6 ++++-- src/UriException.php | 6 ++++-- src/Ws.php | 6 ++++-- 10 files changed, 29 insertions(+), 37 deletions(-) diff --git a/.scrutinizer.yml b/.scrutinizer.yml index 59f57d9..0116232 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml @@ -4,29 +4,11 @@ filter: checks: php: code_rating: true - remove_extra_empty_lines: true - remove_php_closing_tag: true - remove_trailing_whitespace: true - fix_use_statements: - remove_unused: true - preserve_multiple: false - preserve_blanklines: true - order_alphabetically: true - fix_php_opening_tag: true - fix_linefeed: true - fix_line_ending: true - fix_identation_4spaces: true - fix_doc_comments: true tools: external_code_coverage: timeout: 600 runs: 2 php_code_coverage: false - php_code_sniffer: - config: - standard: PSR2 - filter: - paths: ['src'] php_loc: enabled: true excluded_dirs: [tests, vendor] diff --git a/.travis.yml b/.travis.yml index 7a41de0..f9e608a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,11 +8,7 @@ matrix: env: COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=true - php: 7.1 env: COLLECT_COVERAGE=true VALIDATE_CODING_STYLE=false - - php: hhvm - env: COLLECT_COVERAGE=false VALIDATE_CODING_STYLE=false fast_finish: true - allow_failures: - - php: hhvm cache: directories: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3367af8..283e18d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All Notable changes to `League\Uri\Components` will be documented in this file -## Next +## 1.0.4 - 2017-04-19 ### Added diff --git a/src/AbstractUri.php b/src/AbstractUri.php index 8c8d0f9..53bcbe5 100644 --- a/src/AbstractUri.php +++ b/src/AbstractUri.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License) - * @version 1.0.3 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-components + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/Data.php b/src/Data.php index 13973d1..8dffe49 100644 --- a/src/Data.php +++ b/src/Data.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License) - * @version 1.0.3 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-components + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/File.php b/src/File.php index 99ef7dc..84fa303 100644 --- a/src/File.php +++ b/src/File.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License) - * @version 1.0.3 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-components + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/Ftp.php b/src/Ftp.php index 74d3209..194c8da 100644 --- a/src/Ftp.php +++ b/src/Ftp.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License) - * @version 1.0.3 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-components + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/Http.php b/src/Http.php index bac8366..932cfcb 100644 --- a/src/Http.php +++ b/src/Http.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License) - * @version 1.0.3 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-components + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/UriException.php b/src/UriException.php index 0502d8b..b97124f 100644 --- a/src/UriException.php +++ b/src/UriException.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-parser/blob/master/LICENSE (MIT License) - * @version 0.3.0 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-parser/ + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1); diff --git a/src/Ws.php b/src/Ws.php index b343518..2bae105 100644 --- a/src/Ws.php +++ b/src/Ws.php @@ -5,10 +5,12 @@ * @package League\Uri * @subpackage League\Uri\Schemes * @author Ignace Nyamagana Butera - * @copyright 2016 Ignace Nyamagana Butera * @license https://github.com/thephpleague/uri-components/blob/master/LICENSE (MIT License) - * @version 1.0.3 + * @version 1.0.4 * @link https://github.com/thephpleague/uri-components + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. */ declare(strict_types=1);