From 3d91716aa4e666bcbf8c46f9203e59c7a2a1ac56 Mon Sep 17 00:00:00 2001 From: Greg Sherwood Date: Fri, 2 Sep 2016 10:30:35 +1000 Subject: [PATCH] Prepare for 3.0.0RC1 release --- package.xml | 38 +++++++++++++++++++++++++++++++++----- src/Config.php | 4 ++-- 2 files changed, 35 insertions(+), 7 deletions(-) diff --git a/package.xml b/package.xml index 90eb93b7ad..f199bb9c98 100644 --- a/package.xml +++ b/package.xml @@ -15,14 +15,14 @@ http://pear.php.net/dtd/package-2.0.xsd"> yes 2016-09-02 - + - 3.0.0a2 - 3.0.0a2 + 3.0.0RC1 + 3.0.0RC1 - alpha - alpha + beta + beta BSD 3-Clause License @@ -1587,6 +1587,34 @@ http://pear.php.net/dtd/package-2.0.xsd"> + + + 3.0.0RC1 + 3.0.0RC1 + + + beta + beta + + 2016-09-02 + BSD License + + - Progress output now shows E and W in green when a file has fixable errors or warnings + -- Only supported if colors are enabled + - PHPCBF no longer produces verbose output by default (request #699) + -- Use the -v command line argument to show verbose fixing output + -- Use the -q command line argument to disable verbose information if enabled by default + - PHPBF now prints a summary report after fixing files + -- Report shows files that were fixed, how many errors were fixed, and how many remain + - PHPCBF now supports the -p command line argument to print progress information + -- Prints a green F for files where fixes occurred + -- Prints a red E for files that could not be fixed due to an error + -- Use the -q command line argument to disable progress information if enabled by default + - Running unit tests using --verbose no longer throws errors + - Fixed shell error appearing on some systems when trying to find executable paths + - Includes all changes from the 2.7.0 release + + 3.0.0a1 diff --git a/src/Config.php b/src/Config.php index 53788e1ea1..8664cf0407 100644 --- a/src/Config.php +++ b/src/Config.php @@ -22,14 +22,14 @@ class Config * * @var string */ - const VERSION = '3.0.0a2'; + const VERSION = '3.0.0RC1'; /** * Package stability; either stable, beta or alpha. * * @var string */ - const STABILITY = 'alpha'; + const STABILITY = 'beta'; /** * An array of settings that PHPCS and PHPCBF accept.