Skip to content

Commit

Permalink
Bump library version und update Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
JBlond committed Oct 26, 2021
1 parent d6b2ef6 commit e88dffb
Show file tree
Hide file tree
Showing 21 changed files with 38 additions and 22 deletions.
20 changes: 18 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
# Changelog

## 2.3.3 (2021-08-23)

## 2.4.0 (2021-08-23)

* Add deprecation notice for missing method ([f494b3a](https://github.com/JBlond/php-diff/commit/f494b3a), [9403eba](https://github.com/JBlond/php-diff/commit/9403eba))
* Add generator for ignored lines ([6b8662e](https://github.com/JBlond/php-diff/commit/6b8662e), [4dec4ad](https://github.com/JBlond/php-diff/commit/4dec4ad))
* Add method `generateLinesIgnore` ([6ef61bc](https://github.com/JBlond/php-diff/commit/6ef61bc), [75f5ce0](https://github.com/JBlond/php-diff/commit/75f5ce0))
* Bump library version und update Changelog ([a5c49d1](https://github.com/JBlond/php-diff/commit/a5c49d1))
* Document methods ([9699b5b](https://github.com/JBlond/php-diff/commit/9699b5b), [7d973d3](https://github.com/JBlond/php-diff/commit/7d973d3))
* Document option `ignoreLines` ([0849a1e](https://github.com/JBlond/php-diff/commit/0849a1e), [19634bb](https://github.com/JBlond/php-diff/commit/19634bb))
* Document update grammar in the comments ([3f44195](https://github.com/JBlond/php-diff/commit/3f44195))
* Fix PSR-12 code style ([0bf1a08](https://github.com/JBlond/php-diff/commit/0bf1a08))
* Optimize Sequence renderer ([576830c](https://github.com/JBlond/php-diff/commit/576830c), [bb0eed4](https://github.com/JBlond/php-diff/commit/bb0eed4))
* Optimize colorize is only used here ([02cf114](https://github.com/JBlond/php-diff/commit/02cf114))
* Optimize constant usage ([d0cede3](https://github.com/JBlond/php-diff/commit/d0cede3), [3591515](https://github.com/JBlond/php-diff/commit/3591515))
* Optimize stripping empty/blank lines ([ea6a2e4](https://github.com/JBlond/php-diff/commit/ea6a2e4), [a239f17](https://github.com/JBlond/php-diff/commit/a239f17))

## v2.3.3 (2021-08-23)

* Bump library version und update Changelog ([f5ce6bc](https://github.com/JBlond/php-diff/commit/f5ce6bc))
* Fix Autoload test classes only in development ([31b4222](https://github.com/JBlond/php-diff/commit/31b4222))

## v2.3.2 (2021-03-27)
Expand Down
2 changes: 1 addition & 1 deletion generateChangelog.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
require 'vendor/autoload.php';

$changelogOptions = [
'headTagName' => '2.3.3',
'headTagName' => '2.4.0',
'headTagDate' => '2021-08-23',
'titleOrder' => 'ASC',
];
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class Diff implements ConstantsInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/DiffUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @author Mario Brandt <[email protected]>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class DiffUtils
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Html/Merged.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class Merged extends MainRenderer implements SubRendererInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Html/SideBySide.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class SideBySide extends MainRenderer implements SubRendererInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Html/Unified.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class Unified extends MainRenderer implements SubRendererInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/MainRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class MainRenderer extends MainRendererAbstract
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/MainRendererAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
abstract class MainRendererAbstract
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/SubRendererInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
interface SubRendererInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Text/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class Context extends MainRendererAbstract
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Text/InlineCli.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class InlineCli extends MainRenderer implements SubRendererInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Text/Unified.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @author Mario Brandt <[email protected]>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/

Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Renderer/Text/UnifiedCli.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Mario Brandt <[email protected]>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class UnifiedCli extends MainRendererAbstract
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/SequenceMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class SequenceMatcher implements ConstantsInterface
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff/Similarity.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class Similarity extends SequenceMatcher
Expand Down
2 changes: 1 addition & 1 deletion tests/Diff/Renderer/Html/HtmlRenderersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class HtmlRenderersTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Diff/Renderer/MainRendererTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2009 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/Diff/Renderer/Text/TextRenderersTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2019 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class TextRenderersTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Diff/SequenceMatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2009 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class SequenceMatcherTest extends TestCase
Expand Down
2 changes: 1 addition & 1 deletion tests/Diff/SimilarityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* @author Ferry Cools <[email protected]>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.3
* @version 2.4.0
* @link https://github.com/JBlond/php-diff
*/
class SimilarityTest extends TestCase
Expand Down

0 comments on commit e88dffb

Please sign in to comment.