Skip to content

Commit

Permalink
Merge pull request #94 from JBlond/release-2.3.2
Browse files Browse the repository at this point in the history
Bump library version und update Changelog
  • Loading branch information
JBlond committed Mar 27, 2021
2 parents 2d0145d + 8a83b39 commit c09edb2
Show file tree
Hide file tree
Showing 21 changed files with 31 additions and 23 deletions.
12 changes: 10 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# Changelog

## 2.3.1 (2021-02-03)
## 2.3.2 (2021-03-27)

* Bump library version ([6e42d96](https://github.com/JBlond/php-diff/commit/6e42d96))
* Fix [#90](https://github.com/JBlond/php-diff/issues/90) - Merged Diff shows result only partially ([acbfd7d](https://github.com/JBlond/php-diff/commit/acbfd7d))
* Fix colors ([7eba340](https://github.com/JBlond/php-diff/commit/7eba340))
* Fix repeating class assignment of line header ([fb32453](https://github.com/JBlond/php-diff/commit/fb32453))
* Fix title attribute values ([533a6bf](https://github.com/JBlond/php-diff/commit/533a6bf))

## v2.3.1 (2021-02-03)

* Add DigiLive/gitChangelog for change log generation ([0a6a84f](https://github.com/JBlond/php-diff/commit/0a6a84f))
* Bump library version ([013f862](https://github.com/JBlond/php-diff/commit/013f862))
* Cut HTML Unified Renderer ([1ba255f](https://github.com/JBlond/php-diff/commit/1ba255f))
* Document PhpUnit Similarity Test ([7ec484c](https://github.com/JBlond/php-diff/commit/7ec484c))
* Document Update Changelog ([7d6c8bb](https://github.com/JBlond/php-diff/commit/7d6c8bb), [c9881d3](https://github.com/JBlond/php-diff/commit/c9881d3))
* Document Update Changelog ([28e1dc0](https://github.com/JBlond/php-diff/commit/28e1dc0), [c9881d3](https://github.com/JBlond/php-diff/commit/c9881d3))
* Document disabled inspection ([909e195](https://github.com/JBlond/php-diff/commit/909e195))
* Document generateLinesEqual() ([8a193c9](https://github.com/JBlond/php-diff/commit/8a193c9))
* Document methods ([94c8bd5](https://github.com/JBlond/php-diff/commit/94c8bd5))
Expand Down
4 changes: 2 additions & 2 deletions generateChangelog.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
require 'vendor/autoload.php';

$changelogOptions = [
'headTagName' => '2.3.1',
'headTagDate' => '2021-02-03',
'headTagName' => '2.3.2',
'headTagDate' => '2021-03-27',
'titleOrder' => 'ASC',
];
$changelogLabels = ['Add', 'Cut', 'Fix', 'Bump', 'Document','Optimize'];
Expand Down
2 changes: 1 addition & 1 deletion lib/jblond/Diff.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* @author Ferry Cools <info@DigiLive.nl>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @link https://github.com/JBlond/php-diff
*/
class Diff
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 <leet31337@web.de>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2009 Chris Boulton
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <leet31337@web.de>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <leet31337@web.de>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @link https://github.com/JBlond/php-diff
*/
class SequenceMatcher
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 <info@DigiLive.nl>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2009 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2019 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2009 Mario Brandt
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @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 <info@DigiLive.nl>
* @copyright (c) 2020 Ferry Cools
* @license New BSD License http://www.opensource.org/licenses/bsd-license.php
* @version 2.3.0
* @version 2.3.2
* @link https://github.com/JBlond/php-diff
*/
class SimilarityTest extends TestCase
Expand Down

0 comments on commit c09edb2

Please sign in to comment.