Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Sep 6, 2023
1 parent e3a8409 commit 31b9389
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.TXT
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
6.6.4 (2023-09-06)
- Fix GitHub automation tests.

6.6.3 (2023-09-06)
- Fix SPDX license ID (#591)
- Fix warning "array offset on value of type null" (#620)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.6.3
6.6.4
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"barcodes"
],
"homepage": "http://www.tcpdf.org/",
"version": "6.6.3",
"version": "6.6.4",
"license": "LGPL-3.0-or-later",
"authors": [
{
Expand Down
18 changes: 15 additions & 3 deletions include/tcpdf_fonts.php
Original file line number Diff line number Diff line change
Expand Up @@ -1708,7 +1708,10 @@ public static function unichrASCII($c) {

/**
* Converts array of UTF-8 characters to UTF16-BE string.<br>
* Based on: http://www.faqs.org/rfcs/rfc2781.html
* Based permissions:
contents: read
on: http://www.faqs.org/rfcs/rfc2781.html

This comment has been minimized.

Copy link
@remicollet

remicollet Sep 6, 2023

Contributor

bad paste issue ?

This comment has been minimized.

Copy link
@williamdes

williamdes Sep 6, 2023

Contributor

Probably, #644

* <pre>
* Encoding UTF-16:
*
Expand Down Expand Up @@ -1898,7 +1901,10 @@ public static function uniord($uch) {
/**
* Converts UTF-8 character to integer value.<br>
* Invalid byte sequences will be replaced with 0xFFFD (replacement character)<br>
* Based on: http://www.faqs.org/rfcs/rfc3629.html
* Based permissions:
contents: read
on: http://www.faqs.org/rfcs/rfc3629.html
* <pre>
* Char. number range | UTF-8 octet sequence
* (hexadecimal) | (binary)
Expand All @@ -1909,7 +1915,13 @@ public static function uniord($uch) {
* 0001 0000-0010 FFFF | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
* ---------------------------------------------------------------------
*
* ABFN notation:
* ABFN notatipermissions:
contents: read

This comment has been minimized.

Copy link
@williamdes

williamdes Sep 6, 2023

Contributor

@nicolaasuni This seems like a mistake

Issue about it: #644

permissions:
contents: read
on:
* ---------------------------------------------------------------------
* UTF8-octets = *( UTF8-char )
* UTF8-char = UTF8-1 / UTF8-2 / UTF8-3 / UTF8-4
Expand Down
2 changes: 1 addition & 1 deletion include/tcpdf_static.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class TCPDF_STATIC {
* Current TCPDF version.
* @private static
*/
private static $tcpdf_version = '6.6.3';
private static $tcpdf_version = '6.6.4';

/**
* String alias for total number of pages.
Expand Down
6 changes: 3 additions & 3 deletions tcpdf.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
//============================================================+
// File name : tcpdf.php
// Version : 6.6.3
// Version : 6.6.4
// Begin : 2002-08-03
// Last Update : 2023-09-06
// Author : Nicola Asuni - Tecnick.com LTD - www.tecnick.com - info@tecnick.com
Expand Down Expand Up @@ -104,7 +104,7 @@
* Tools to encode your unicode fonts are on fonts/utils directory.</p>
* @package com.tecnick.tcpdf
* @author Nicola Asuni
* @version 6.6.3
* @version 6.6.4
*/

// TCPDF configuration
Expand All @@ -128,7 +128,7 @@
* 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>
* @package com.tecnick.tcpdf
* @brief PHP class for generating PDF documents without requiring external extensions.
* @version 6.6.3
* @version 6.6.4
* @author Nicola Asuni - info@tecnick.com
* @IgnoreAnnotation("protected")
* @IgnoreAnnotation("public")
Expand Down

0 comments on commit 31b9389

Please sign in to comment.