update version numbers

This commit is contained in:
mohrt
2003-02-11 18:35:43 +00:00
parent e352b8b630
commit c239d16935
9 changed files with 27 additions and 19 deletions

View File

@@ -30,7 +30,7 @@
* http://www.phpinsider.com * http://www.phpinsider.com
* *
* @link http://www.phpinsider.com * @link http://www.phpinsider.com
* @version 2.4.1 * @version 2.4.2
* @copyright Copyright: 2001,2002 ispi of Lincoln, Inc. * @copyright Copyright: 2001,2002 ispi of Lincoln, Inc.
* @author Andrei Zmievski <andrei@php.net> * @author Andrei Zmievski <andrei@php.net>
* @access public * @access public

22
NEWS
View File

@@ -1,11 +1,13 @@
Version 2.4.2 (Feb 11, 2003)
----------------------------
- support embedded variables in objects (Monte) - support embedded variables in objects (Monte)
- fix bug with objects with no properties (M Mohr, Monte) - fix bug with objects with no properties (M Mohr, Monte)
- support full dollar var syntax in quoted text (Monte) - support full dollar var syntax in quoted text (Monte)
- fixed bug in $smarty.const.FOO introduced in 2.4.1 (M - fixed bug in $smarty.const.FOO introduced in 2.4.1 (M
Mohr, Monte) Mohr, Monte)
Version 2.4.1 Version 2.4.1 (Feb 6, 2003)
------------- ---------------------------
- ignore case in IF statements (Rainer Collet, Monte) - ignore case in IF statements (Rainer Collet, Monte)
- treat undefined constants as null (Ferdinand Beyer, Monte) - treat undefined constants as null (Ferdinand Beyer, Monte)
@@ -16,8 +18,8 @@ Version 2.4.1
- added support for math operators in if statements (Monte) - added support for math operators in if statements (Monte)
- added support for $foo->bar[$x].blah syntax (Monte) - added support for $foo->bar[$x].blah syntax (Monte)
Version 2.4.0 Version 2.4.0 (Feb 2, 2003)
------------- ---------------------------
- fix known problems with php tag handling in templates - fix known problems with php tag handling in templates
(recursion, echoing <?xml tags) (Monte) (recursion, echoing <?xml tags) (Monte)
@@ -54,8 +56,8 @@ Version 2.4.0
Massimiliano Perantoni) Massimiliano Perantoni)
- added mailto plugin to dist. (Monte) - added mailto plugin to dist. (Monte)
Version 2.3.1 Version 2.3.1 (Nov 19, 2002)
------------- ----------------------------
- added optgroup support to html_options (Monte, Robert - added optgroup support to html_options (Monte, Robert
Amos) Amos)
@@ -69,8 +71,8 @@ Version 2.3.1
Hagerty) Hagerty)
- added textformat block function (Monte) - added textformat block function (Monte)
Version 2.3.0 Version 2.3.0 (Aug 7, 2002)
------------- ---------------------------
- added assign_by_ref() and append_by_ref() functions - added assign_by_ref() and append_by_ref() functions
(Bob Silva, Monte) (Bob Silva, Monte)
@@ -94,8 +96,8 @@ Version 2.3.0
- fix bug with debug_tpl file path with Windows (.SMK., Monte) - fix bug with debug_tpl file path with Windows (.SMK., Monte)
- fix append() function with string/array problem (Monte) - fix append() function with string/array problem (Monte)
Version 2.2.0 Version 2.2.0 (July 11, 2002)
------------- -----------------------------
- make debug.tpl work with any delimiter (Monte) - make debug.tpl work with any delimiter (Monte)
- change logic in assign() and append() to test var names - change logic in assign() and append() to test var names

2
README
View File

@@ -2,7 +2,7 @@ NAME:
Smarty - the PHP compiling template engine Smarty - the PHP compiling template engine
VERSION: 2.4.1 VERSION: 2.4.2
AUTHORS: AUTHORS:

View File

@@ -1,3 +1,9 @@
2.4.2
-----
Another point release. Added support for dynamic object reference syntax
($foo->$bar), support for full variable syntax within quotes ("$foo[0].bar"),
and other minor fixes. See the NEWS file for full details.
2.4.1 2.4.1
----- -----

View File

@@ -39,7 +39,7 @@
* @author Monte Ohrt <monte@ispi.net> * @author Monte Ohrt <monte@ispi.net>
* @author Andrei Zmievski <andrei@php.net> * @author Andrei Zmievski <andrei@php.net>
* @package Smarty * @package Smarty
* @version 2.4.1 * @version 2.4.2
*/ */
/** /**
@@ -459,7 +459,7 @@ class Smarty
* *
* @var string * @var string
*/ */
var $_version = '2.4.1'; var $_version = '2.4.2';
/** /**
* current template inclusion depth * current template inclusion depth

View File

@@ -6,7 +6,7 @@
* Author: Monte Ohrt <monte@ispi.net> * Author: Monte Ohrt <monte@ispi.net>
* Andrei Zmievski <andrei@php.net> * Andrei Zmievski <andrei@php.net>
* *
* Version: 2.4.1 * Version: 2.4.2
* Copyright: 2001,2002 ispi of Lincoln, Inc. * Copyright: 2001,2002 ispi of Lincoln, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

View File

@@ -30,7 +30,7 @@
* http://www.phpinsider.com * http://www.phpinsider.com
* *
* @link http://www.phpinsider.com * @link http://www.phpinsider.com
* @version 2.4.1 * @version 2.4.2
* @copyright Copyright: 2001,2002 ispi of Lincoln, Inc. * @copyright Copyright: 2001,2002 ispi of Lincoln, Inc.
* @author Andrei Zmievski <andrei@php.net> * @author Andrei Zmievski <andrei@php.net>
* @access public * @access public

View File

@@ -39,7 +39,7 @@
* @author Monte Ohrt <monte@ispi.net> * @author Monte Ohrt <monte@ispi.net>
* @author Andrei Zmievski <andrei@php.net> * @author Andrei Zmievski <andrei@php.net>
* @package Smarty * @package Smarty
* @version 2.4.1 * @version 2.4.2
*/ */
/** /**
@@ -459,7 +459,7 @@ class Smarty
* *
* @var string * @var string
*/ */
var $_version = '2.4.1'; var $_version = '2.4.2';
/** /**
* current template inclusion depth * current template inclusion depth

View File

@@ -6,7 +6,7 @@
* Author: Monte Ohrt <monte@ispi.net> * Author: Monte Ohrt <monte@ispi.net>
* Andrei Zmievski <andrei@php.net> * Andrei Zmievski <andrei@php.net>
* *
* Version: 2.4.1 * Version: 2.4.2
* Copyright: 2001,2002 ispi of Lincoln, Inc. * Copyright: 2001,2002 ispi of Lincoln, Inc.
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or