diff --git a/CHANGELOG.TXT b/CHANGELOG.TXT index c3c91a0..c555779 100644 --- a/CHANGELOG.TXT +++ b/CHANGELOG.TXT @@ -1,3 +1,6 @@ +6.0.095 (2014-10-02) + - Bug item #979 "New Timezone option overwriting current timezone" was fixed. + 6.0.094 (2014-09-30) - Bug item #978 "Variable Undefined: $cborder" was fixed. diff --git a/README.TXT b/README.TXT index 0a7f054..4b72419 100644 --- a/README.TXT +++ b/README.TXT @@ -8,8 +8,8 @@ http://sourceforge.net/donate/index.php?group_id=128076 ------------------------------------------------------------ Name: TCPDF -Version: 6.0.094 -Release date: 2014-09-30 +Version: 6.0.095 +Release date: 2014-10-02 Author: Nicola Asuni Copyright (c) 2002-2014: diff --git a/composer.json b/composer.json index b70c775..d8623f3 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "tecnick.com/tcpdf", - "version": "6.0.094", + "version": "6.0.095", "homepage": "http://www.tcpdf.org/", "type": "library", "description": "TCPDF is a PHP class for generating PDF documents and barcodes.", diff --git a/include/tcpdf_static.php b/include/tcpdf_static.php index 2c32f89..a981b18 100644 --- a/include/tcpdf_static.php +++ b/include/tcpdf_static.php @@ -55,7 +55,7 @@ class TCPDF_STATIC { * Current TCPDF version. * @private static */ - private static $tcpdf_version = '6.0.094'; + private static $tcpdf_version = '6.0.095'; /** * String alias for total number of pages. diff --git a/tcpdf.php b/tcpdf.php index ca91d37..08c5f09 100644 --- a/tcpdf.php +++ b/tcpdf.php @@ -1,9 +1,9 @@ * @package com.tecnick.tcpdf * @author Nicola Asuni - * @version 6.0.094 + * @version 6.0.095 */ // TCPDF configuration @@ -128,7 +128,7 @@ require_once(dirname(__FILE__).'/include/tcpdf_static.php'); * 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.
* @package com.tecnick.tcpdf * @brief PHP class for generating PDF documents without requiring external extensions. - * @version 6.0.094 + * @version 6.0.095 * @author Nicola Asuni - info@tecnick.com */ class TCPDF { diff --git a/tcpdf_autoconfig.php b/tcpdf_autoconfig.php index 951c0b0..7dc2d47 100644 --- a/tcpdf_autoconfig.php +++ b/tcpdf_autoconfig.php @@ -235,7 +235,6 @@ if (!defined('K_TCPDF_THROW_EXCEPTION_ERROR')) { if (!defined('K_TIMEZONE')) { define('K_TIMEZONE', @date_default_timezone_get()); } -date_default_timezone_set(K_TIMEZONE); //============================================================+ // END OF FILE