2010-04-11
	* 0.8.0 released

2010-04-10
	* building to build directory
	* make release-bin target

2010-01-25
	* default datasource name changed to tscript_test
	* escape_html keyword in string extension

2009-11-18
	* use regular expressions from libiberty in win32 version instead of rxspencer.

2007-10-20  
	* multiple arguments support in format keyword in string extension
	* better argument types checking in format keyword in string extension
	* thousands grouping support in format keyword in string extension on win32

2007-10-19  
	* field types added in date structures returned by sql extension

2007-10-18  
	* format keyword in string extension - limited to one argument
	* numeric values retrieved as number variables in sql extension
	* workaround for leading zeros in FirebirdSQL driver removed (not required any more)

2007-07-18  
	* fixed converting from number to string when system decimal separator is ','

2007-07-12  
	* workaround for leading zeros problem in FirebirdSQL driver

2007-03-13  
	* workaround for empty strings problem in FirebirdSQL driver

2007-03-10  
	* fixed null values retrieving in sql extension

2006-12-27  
	* default environment for cross-compiling for win32 changed to Gentoo crossdev-mingw32

2006-07-31  
	* support for multiple +, -, *, / operators in a row

2006-07-28  
	* large numbers support fixed

2006-05-18  
	* special characters (\{, \}, \;) in extensions argument

2006-05-14  
	* special characters (\\, \", \r, \n, \t) in string literals
	* escaping brackets in plain text using backslashes (\{, \})
	* ignoring tabs at the beginning of text  lines - allowing indents
	* \t in text converted to tabs
	* 0.7.0 released

2006-02-16  
	* len command in string extension

2006-02-12  
	* functions initializing and closing all standard extensions at once

2005-12-13  
	* helper function for handling extension arguments
	* some parser conflicts resolved

2005-12-03  
	* fixed types conversion during comparitions
	* "exit" instruction support
	* fixed types conversion during interpeting conditionals, loops and logical operators
	* "foreach" instruction support

2005-11-15  
	* commas as extensions argument delimeter

2005-11-08  
	* commas allowed at the end of statements block
	* multiple logical expressions ("a && b && c" etc.) supported

2005-10-25  
	* multiple instructions in one block supported

2005-10-16  
	* simplified interpreter code using macros
	* "break" and "continue" instructions support in "for" and "while" loops

2005-10-13  
	* lib prefixes for static libraries and shared unix libraries

2005-10-07  
	* 0.6.0 released

2005-09-28  
	* unary increment and decrement operators (--x, ++x)
	* bit shift operators (<<, >>)

2005-09-27  
	* "while" loop
	* dynamic cached constants support optimized

2005-09-19  
	* min and max number of arguments check in the interpreter
	* explode keyword in string extension

2005-09-15  
	* a lot of warnings removed

2005-09-14  
	* fixed problem with file extension with reference arguments in loops
	* fileexists keyword in file extension

2005-09-12  
	* new functions tscript_value_as_string() and tscript_value_as_number()
	  instead of directly using data field in value structure.

2005-09-10  
	* block extensions support
	* file keywords moved to file extension

2005-09-08  
	* grammar cleanups
	* support for multiple arguments in extensions
	* replace keyword in string extension
	* support for zero-argument extensions - extension_name()
	* date keyword in sysinfo extension

2005-09-06  
	* grammar cleanups

2005-09-04  
	* cleanups and fixes for empty result set in sql extension

2005-09-03  
	* 0.5.0 released

2005-08-31  
	* debug symbols settings in Makefiles
	* terrible memory error fixed

2005-08-29  
	* typeof keyword
	* listdir in file extension creates "size" subvariables

2005-08-20  
	* getfile command in file extension

2005-08-18  
	* tscript_set_debug_callback() instead of tscript_set_verbose()
	* tscript_value objects allocated on heap, arguments as pointers only

2005-08-16  
	* null keyword, better == and != operators
	* arrays can be indexed using all types of values

2005-08-15  
	* a lot of code fixes
	* a lot of memory leaks fixed
	* datasource, user, password arguments to tscript_ext_sql_init() in sql extension
	* better null values handling, "fields" subvariable in results in sql extension

2005-08-14  
	* compile error message fix
	* binary operators (&, |)
	* readfile command in file extension
	* a lot of memory leaks fixed

2005-08-13  
	* concept of script context instead of global variables

2005-08-12  
	* deletefile command in file extension

2005-08-10  
	* file extension with listdir

2005-08-09  
	* dynamic cached constants support
	* function-like calling notation for extensions
	* "file" command for redirecting part of the output

2005-08-04  
	* regular expressions (=~ operator)

2005-08-02  
	* increment and decrement operators fixed
	* logical not (!) operator fixed
	* negation operator (neunary minus) operator implemented
	* basic string extension - trim

2005-07-31  
	* filenames cleanup part II

2005-07-25  
	* filenames cleanup

2005-07-21  
	* nicer api for compiler errors
	* better runtime error support

2005-01-21
	* shared libraries

2005-01-20  
	* xmingw support (cross-compiling for win32)
	* basic sysinfo extension
	* nicer api (compiling from stream, file, stdin...)

2005-01-18  
	* namespace cleaning - tscript_ prefixes in functions, types and vars
	* namespace cleaning - tscript_ prefixes in lexical analyzer and parser
	* a lot of small fixes and improvements

2004-11-29  
	* more advanced sql extension - DROP, SELECT
	* support for DELETE and UPDATE in sql extension
	* c-style comments - /* ... */
	* documentation moved from README to the web page
	* 0.4.0 released

2004-11-26  
	* increment and decrement suffix operators (++ and --)
	* more sane type conversion rules
	* basic sql extension - CREATE, INSERT

2004-11-25  
	* extension param can contain expressions

2004-11-24  
	* initial subvariables support

2004-11-20  
	* initial array support

2004-11-19  
	* --verbose option
	* separated list and map implementation

2004-11-04  
	* initial extensions support
	* first extension - exec
	* 0.3.0 released

2004-10-26  
	* modulo operator %
	* make test_speed with time reports, included in make process
	* speed.ts test with quite time consuming loop

2004-10-25  
	* new operator + rules. arithmetic only for two numbers
	* string(...) and number(...) type conversion operators
	* separated static library

2004-10-24  

	* backslash after command block and before \n eats \n
	* -ggdb compiler flag
	* basic types - number and strings
	* operator + works well for strings
	* initial floating point numbers support
	* 0.2.0 released

2004-10-23  

	* compilation errors support with line and column numbering

2004-10-20  

	* some logical operators - || && !
	* --tree option in command line utility to print abstract syntax tree

2004-10-16  

	* 0.1.0 released.
