Skip to content

Bump library version und update Changelog #94

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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 <[email protected]>
* @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