Skip to content

Commit e88dffb

Browse files
committed
Bump library version und update Changelog
1 parent d6b2ef6 commit e88dffb

21 files changed

+38
-22
lines changed

changelog.md

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
11
# Changelog
22

3-
## 2.3.3 (2021-08-23)
4-
3+
## 2.4.0 (2021-08-23)
4+
5+
* Add deprecation notice for missing method ([f494b3a](https://github.com/JBlond/php-diff/commit/f494b3a), [9403eba](https://github.com/JBlond/php-diff/commit/9403eba))
6+
* Add generator for ignored lines ([6b8662e](https://github.com/JBlond/php-diff/commit/6b8662e), [4dec4ad](https://github.com/JBlond/php-diff/commit/4dec4ad))
7+
* Add method `generateLinesIgnore` ([6ef61bc](https://github.com/JBlond/php-diff/commit/6ef61bc), [75f5ce0](https://github.com/JBlond/php-diff/commit/75f5ce0))
8+
* Bump library version und update Changelog ([a5c49d1](https://github.com/JBlond/php-diff/commit/a5c49d1))
9+
* Document methods ([9699b5b](https://github.com/JBlond/php-diff/commit/9699b5b), [7d973d3](https://github.com/JBlond/php-diff/commit/7d973d3))
10+
* Document option `ignoreLines` ([0849a1e](https://github.com/JBlond/php-diff/commit/0849a1e), [19634bb](https://github.com/JBlond/php-diff/commit/19634bb))
11+
* Document update grammar in the comments ([3f44195](https://github.com/JBlond/php-diff/commit/3f44195))
12+
* Fix PSR-12 code style ([0bf1a08](https://github.com/JBlond/php-diff/commit/0bf1a08))
13+
* Optimize Sequence renderer ([576830c](https://github.com/JBlond/php-diff/commit/576830c), [bb0eed4](https://github.com/JBlond/php-diff/commit/bb0eed4))
14+
* Optimize colorize is only used here ([02cf114](https://github.com/JBlond/php-diff/commit/02cf114))
15+
* Optimize constant usage ([d0cede3](https://github.com/JBlond/php-diff/commit/d0cede3), [3591515](https://github.com/JBlond/php-diff/commit/3591515))
16+
* Optimize stripping empty/blank lines ([ea6a2e4](https://github.com/JBlond/php-diff/commit/ea6a2e4), [a239f17](https://github.com/JBlond/php-diff/commit/a239f17))
17+
18+
## v2.3.3 (2021-08-23)
19+
20+
* Bump library version und update Changelog ([f5ce6bc](https://github.com/JBlond/php-diff/commit/f5ce6bc))
521
* Fix Autoload test classes only in development ([31b4222](https://github.com/JBlond/php-diff/commit/31b4222))
622

723
## v2.3.2 (2021-03-27)

generateChangelog.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
require 'vendor/autoload.php';
66

77
$changelogOptions = [
8-
'headTagName' => '2.3.3',
8+
'headTagName' => '2.4.0',
99
'headTagDate' => '2021-08-23',
1010
'titleOrder' => 'ASC',
1111
];

lib/jblond/Diff.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @author Ferry Cools <[email protected]>
2525
* @copyright (c) 2020 Mario Brandt
2626
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
27-
* @version 2.3.3
27+
* @version 2.4.0
2828
* @link https://github.com/JBlond/php-diff
2929
*/
3030
class Diff implements ConstantsInterface

lib/jblond/Diff/DiffUtils.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @author Mario Brandt <[email protected]>
1212
* @copyright (c) 2020 Mario Brandt
1313
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
14-
* @version 2.3.3
14+
* @version 2.4.0
1515
* @link https://github.com/JBlond/php-diff
1616
*/
1717
class DiffUtils

lib/jblond/Diff/Renderer/Html/Merged.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @author Ferry Cools <[email protected]>
1515
* @copyright (c) 2020 Ferry Cools
1616
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
17-
* @version 2.3.3
17+
* @version 2.4.0
1818
* @link https://github.com/JBlond/php-diff
1919
*/
2020
class Merged extends MainRenderer implements SubRendererInterface

lib/jblond/Diff/Renderer/Html/SideBySide.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @author Ferry Cools <[email protected]>
1919
* @copyright (c) 2009 Chris Boulton
2020
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
21-
* @version 2.3.3
21+
* @version 2.4.0
2222
* @link https://github.com/JBlond/php-diff
2323
*/
2424
class SideBySide extends MainRenderer implements SubRendererInterface

lib/jblond/Diff/Renderer/Html/Unified.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @author Ferry Cools <[email protected]>
1919
* @copyright (c) 2009 Chris Boulton
2020
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
21-
* @version 2.3.3
21+
* @version 2.4.0
2222
* @link https://github.com/JBlond/php-diff
2323
*/
2424
class Unified extends MainRenderer implements SubRendererInterface

lib/jblond/Diff/Renderer/MainRenderer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author Ferry Cools <[email protected]>
1818
* @copyright (c) 2009 Chris Boulton
1919
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
20-
* @version 2.3.3
20+
* @version 2.4.0
2121
* @link https://github.com/JBlond/php-diff
2222
*/
2323
class MainRenderer extends MainRendererAbstract

lib/jblond/Diff/Renderer/MainRendererAbstract.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @author Ferry Cools <[email protected]>
1717
* @copyright (c) 2020 Ferry Cools
1818
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
19-
* @version 2.3.3
19+
* @version 2.4.0
2020
* @link https://github.com/JBlond/php-diff
2121
*/
2222
abstract class MainRendererAbstract

lib/jblond/Diff/Renderer/SubRendererInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @author Ferry Cools <[email protected]>
1414
* @copyright (c) 2020 Ferry Cools
1515
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
16-
* @version 2.3.3
16+
* @version 2.4.0
1717
* @link https://github.com/JBlond/php-diff
1818
*/
1919
interface SubRendererInterface

lib/jblond/Diff/Renderer/Text/Context.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author Ferry Cools <[email protected]>
1818
* @copyright (c) 2009 Chris Boulton
1919
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
20-
* @version 2.3.3
20+
* @version 2.4.0
2121
* @link https://github.com/JBlond/php-diff
2222
*/
2323
class Context extends MainRendererAbstract

lib/jblond/Diff/Renderer/Text/InlineCli.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author Ferry Cools <[email protected]>
1818
* @copyright (c) 2020 Ferry Cools
1919
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
20-
* @version 2.3.3
20+
* @version 2.4.0
2121
* @link https://github.com/JBlond/php-diff
2222
*/
2323
class InlineCli extends MainRenderer implements SubRendererInterface

lib/jblond/Diff/Renderer/Text/Unified.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @author Mario Brandt <[email protected]>
1717
* @copyright (c) 2020 Mario Brandt
1818
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
19-
* @version 2.3.3
19+
* @version 2.4.0
2020
* @link https://github.com/JBlond/php-diff
2121
*/
2222

lib/jblond/Diff/Renderer/Text/UnifiedCli.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @author Mario Brandt <[email protected]>
1616
* @copyright (c) 2020 Mario Brandt
1717
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
18-
* @version 2.3.3
18+
* @version 2.4.0
1919
* @link https://github.com/JBlond/php-diff
2020
*/
2121
class UnifiedCli extends MainRendererAbstract

lib/jblond/Diff/SequenceMatcher.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author Ferry Cools <[email protected]>
1818
* @copyright (c) 2020 Mario Brandt
1919
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
20-
* @version 2.3.3
20+
* @version 2.4.0
2121
* @link https://github.com/JBlond/php-diff
2222
*/
2323
class SequenceMatcher implements ConstantsInterface

lib/jblond/Diff/Similarity.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* @author Ferry Cools <[email protected]>
1717
* @copyright (c) 2020 Ferry Cools
1818
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
19-
* @version 2.3.3
19+
* @version 2.4.0
2020
* @link https://github.com/JBlond/php-diff
2121
*/
2222
class Similarity extends SequenceMatcher

tests/Diff/Renderer/Html/HtmlRenderersTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* @author Ferry Cools <[email protected]>
2121
* @copyright (c) 2020 Mario Brandt
2222
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
23-
* @version 2.3.3
23+
* @version 2.4.0
2424
* @link https://github.com/JBlond/php-diff
2525
*/
2626
class HtmlRenderersTest extends TestCase

tests/Diff/Renderer/MainRendererTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @author Ferry Cools <[email protected]>
2323
* @copyright (c) 2009 Mario Brandt
2424
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
25-
* @version 2.3.3
25+
* @version 2.4.0
2626
* @link https://github.com/JBlond/php-diff
2727
*/
2828

tests/Diff/Renderer/Text/TextRenderersTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @author Ferry Cools <[email protected]>
2020
* @copyright (c) 2019 Mario Brandt
2121
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
22-
* @version 2.3.3
22+
* @version 2.4.0
2323
* @link https://github.com/JBlond/php-diff
2424
*/
2525
class TextRenderersTest extends TestCase

tests/Diff/SequenceMatcherTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* @author Ferry Cools <[email protected]>
1616
* @copyright (c) 2009 Mario Brandt
1717
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
18-
* @version 2.3.3
18+
* @version 2.4.0
1919
* @link https://github.com/JBlond/php-diff
2020
*/
2121
class SequenceMatcherTest extends TestCase

tests/Diff/SimilarityTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @author Ferry Cools <[email protected]>
1515
* @copyright (c) 2020 Ferry Cools
1616
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
17-
* @version 2.3.3
17+
* @version 2.4.0
1818
* @link https://github.com/JBlond/php-diff
1919
*/
2020
class SimilarityTest extends TestCase

0 commit comments

Comments
 (0)