Skip to content

Commit e3cffc9

Browse files
committed
Bump version
1 parent b133c47 commit e3cffc9

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

CHANGELOG.TXT

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
6.6.2 (2022-12-17)
22
- Ensure pregSplit return type is always array.
3+
- Add ability to run tests on various operating systems (#566)
4+
- Avoid a deprecated error from PHP8.1 (#573)
35

46
6.6.1 (2022-12-12)
57
- Add PHPStan and fix level 1 errors (#307)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.6.1
1+
6.6.2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"barcodes"
1313
],
1414
"homepage": "http://www.tcpdf.org/",
15-
"version": "6.6.1",
15+
"version": "6.6.2",
1616
"license": "LGPL-3.0-only",
1717
"authors": [
1818
{

include/tcpdf_static.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class TCPDF_STATIC {
5555
* Current TCPDF version.
5656
* @private static
5757
*/
58-
private static $tcpdf_version = '6.6.0';
58+
private static $tcpdf_version = '6.6.2';
5959

6060
/**
6161
* String alias for total number of pages.

tcpdf.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
//============================================================+
33
// File name : tcpdf.php
4-
// Version : 6.6.1
4+
// Version : 6.6.2
55
// Begin : 2002-08-03
66
// Last Update : 2022-12-06
77
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
@@ -104,7 +104,7 @@
104104
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
105105
* @package com.tecnick.tcpdf
106106
* @author Nicola Asuni
107-
* @version 6.6.1
107+
* @version 6.6.2
108108
*/
109109

110110
// TCPDF configuration
@@ -128,7 +128,7 @@
128128
* TCPDF project (http://www.tcpdf.org) has been originally derived in 2002 from the Public Domain FPDF class by Olivier Plathey (http://www.fpdf.org), but now is almost entirely rewritten.<br>
129129
* @package com.tecnick.tcpdf
130130
* @brief PHP class for generating PDF documents without requiring external extensions.
131-
* @version 6.6.0
131+
* @version 6.6.2
132132
* @author Nicola Asuni - info@tecnick.com
133133
* @IgnoreAnnotation("protected")
134134
* @IgnoreAnnotation("public")

0 commit comments

Comments
 (0)