Skip to content

Commit 3d91716

Browse files
committed
Prepare for 3.0.0RC1 release
1 parent 513b816 commit 3d91716

File tree

2 files changed

+35
-7
lines changed

2 files changed

+35
-7
lines changed

package.xml

+33-5
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
1515
<active>yes</active>
1616
</lead>
1717
<date>2016-09-02</date>
18-
<time>09:44:00</time>
18+
<time>10:25:00</time>
1919
<version>
20-
<release>3.0.0a2</release>
21-
<api>3.0.0a2</api>
20+
<release>3.0.0RC1</release>
21+
<api>3.0.0RC1</api>
2222
</version>
2323
<stability>
24-
<release>alpha</release>
25-
<api>alpha</api>
24+
<release>beta</release>
25+
<api>beta</api>
2626
</stability>
2727
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD 3-Clause License</license>
2828
<notes>
@@ -1587,6 +1587,34 @@ http://pear.php.net/dtd/package-2.0.xsd">
15871587
</filelist>
15881588
</phprelease>
15891589
<changelog>
1590+
<release>
1591+
<version>
1592+
<release>3.0.0RC1</release>
1593+
<api>3.0.0RC1</api>
1594+
</version>
1595+
<stability>
1596+
<release>beta</release>
1597+
<api>beta</api>
1598+
</stability>
1599+
<date>2016-09-02</date>
1600+
<license uri="https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt">BSD License</license>
1601+
<notes>
1602+
- Progress output now shows E and W in green when a file has fixable errors or warnings
1603+
-- Only supported if colors are enabled
1604+
- PHPCBF no longer produces verbose output by default (request #699)
1605+
-- Use the -v command line argument to show verbose fixing output
1606+
-- Use the -q command line argument to disable verbose information if enabled by default
1607+
- PHPBF now prints a summary report after fixing files
1608+
-- Report shows files that were fixed, how many errors were fixed, and how many remain
1609+
- PHPCBF now supports the -p command line argument to print progress information
1610+
-- Prints a green F for files where fixes occurred
1611+
-- Prints a red E for files that could not be fixed due to an error
1612+
-- Use the -q command line argument to disable progress information if enabled by default
1613+
- Running unit tests using --verbose no longer throws errors
1614+
- Fixed shell error appearing on some systems when trying to find executable paths
1615+
- Includes all changes from the 2.7.0 release
1616+
</notes>
1617+
</release>
15901618
<release>
15911619
<version>
15921620
<release>3.0.0a1</release>

src/Config.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ class Config
2222
*
2323
* @var string
2424
*/
25-
const VERSION = '3.0.0a2';
25+
const VERSION = '3.0.0RC1';
2626

2727
/**
2828
* Package stability; either stable, beta or alpha.
2929
*
3030
* @var string
3131
*/
32-
const STABILITY = 'alpha';
32+
const STABILITY = 'beta';
3333

3434
/**
3535
* An array of settings that PHPCS and PHPCBF accept.

0 commit comments

Comments
 (0)