0.55.0 - file::open sets errno=ENOENT if the file or path wasn't found on
		Windows now
	fixed a bug with filedescriptor::printf when printing to non-buffered
		files on Windows and Solaris 11
	fixed a bug that caused a crash in codetree if codeposition is NULL
	added missing dll export clause to codetreegrammar class
	added xmldomevents class
	added namespace discrimination in codetree::write
	fixed a codetree end-of-string-during-concatenation bug
	fixed a codetree tree reset bug
	fixed an xmlsax bug that caused text nodes with empty values to be
		inserted between tag nodes when there is no text between tags
	added escapechar option to filedescriptor::read-until-terminator
		methods
	added a generic securitycontext class and integrated it with
		filedescriptor
	implemented GSS/SSPI and TLS/SSL children of securitycontext
	removed old SSL integration with filedescriptor
	updated inet/unixsocketclient to close() as the first step of connect()
	updated charstring::to(Unsigned)Integer-with-endptr methods to have
		const char **endptr arguments
	updated configure script to find erlang on openbsd 5.8
	buffers allocated by vasprintf are free()'ed now rather than deleted
	fixed a commandline bug that could cause it to return the next
		parameter for getValue() of a parameter with no value
	fixed connect()/useBlockingMode error masking bug
	removed -revision during link and adopted Semantic Versioning 2.0
	added pthread_create/EAGAIN retry
	added methods to configure and examine process::fork and thread::run
		retry behavior
	thread methods test for invalid thread before operating on it now
	charstring::split doesn't crash if list or listlength are null now
	added debugprint header
	removed problematic thread::cancel() method
	added thread::runDetached() methods
	removed useBlockingMode() call in stdio constructor as is caused
		problems with apps like Apache that actually need stdin/out/err
		to be in non-blocking mode sometimes

0.54 - tweaked code in configure script to remove -Werror* to be non-greedy
	updated semaphoreset/sharedmemory destructors to remove the
		semaphoreset/sharedmemory segment last
	added url class that uses libcurl (read-only for now)
	added support for urls to xmlsax (and thus xmldom and codetree)
	added http support to the url class for platforms that lack an
		appropriate libcurl
	charstring 1-argument trim methods trim all whitespace now,
		not just spaces
	added charstring::isNullOrEmpty()
	added read-until-terminator methods with maxbytes option
	applied George Carrette's listener class patch to not close
		invalid-epoll filedescriptors

0.53 - exposed codetreegrammar class and updated codetree class so that
		successive parses/writes can use the same grammar without
		having to reload it
	added insert/appendXml(File) methods to xmldomnode to parse and
		insert/append xml strings or files to a node
	fixed FILE->fileno detection for solaris 11.2,
		which doesn't have it at all
	llabs() is detected and preferred to abs()
	added partial xml namespace support (namespaces for tags)
	added partial support for extended ascii character set to character
		class
	added setgroups() call before setuid() call to drop extraneous groups
	updated rudiments-config man page, slightly
	removed outdated and unused dtd class
	updated file::resolveSymbolicLink() to use
		directory::maxPathLength(filename) as a starting point
	updated directory::getCurrentDirectory() to use
		MAX_PATH as a starting point
	serialport/serialportprofile, modemserver/modemclient classes are
		disabled in the default build now
	updated intro docs

0.52 - tweaked codetree's recursive break logic a bit
	added compiler class
	added case-insensitive methods to xmldomnode
	added methods to xmldomnode that operate on descendents (as opposed to
		just operating on direct children)
	added methods to xmldomnode for deleting, wrapping, unwrapping
	fixed dynamiclib::getError() bug on windows
	tweaked -Werror detection in configure script
	removed rpcentry class
	added file::setPermissions() methods

0.51 - added missing inline qualifiers to dynamicarray/staticarray method
		implementations
	added test for clock_settime, datetime class uses it if other set-time
		functions aren't available, returns false and sets
		errno=ENOSYS if no set-time function is available
	directory::fpathConf now falls back to MAX_PATH code if fpathconf exists
		but there's dirfd() or anything like it
	file::createFifo returns false and sets errno=ENOSYS on platforms that
		don't support fifo's now
	file::generateKey returns -1 and sets errno=ENOSYS on VMS now
	file::createHardLink returns -1 and sets errno=ENOSYS on platforms
		don't support hard links now
	fixed missing breaks in stdio::flush
	userentry::getPassword/getRealName return NULL on VMS now
	unix sockets are faked on VMS now
	threadmutex is built and installed now whether or not threads are
		supported, but if threads are not supported, its methods
		are degenerate and return success
	filesystem::getCurrentProperties() returns false and sets errno=ENOSYS
		on VMS now
	implemented degenerate groupentry for VMS
	fixed file::getBlockCount() crash that could occur if the filesystem's
		block size was reported as 0
	tweaked copy constructors and = operators in staticarray/dynamicarray
		classes to work with older compilers
	disabled -Werror for gcc < 2.7
	filedescriptor::printf uses fprintf or fdopen/vfprintf when possible,
		in leiu of falling back to charstring::printf
	charstring::printf tries the null device before falling back to a
		scratch file
	the rate at which charstring::printf expands its buffer is now
		exponential up to 1024 bytes
	added sys::getDirectorySeparator()
	fixed trailing-slash-followed-by-quote issue when building windows
		command lines
	added --enable-enosys-notify configure option for runtime notifcations
		when methods set ENOSYS
	cleared errno before each EINTR loop
	fixed sys::sync() segfault
	fixed ssl tests
	removed intervaltimer class
	updated sys::getPhysicalPageCount/getAvailablePhysicalPageCount for
		Windows
	added sys::getAllocationGranularity, updated code to use it instead
		of getPageSize, in most cases
	fixed copy-constructor/=-operator bugs in dynamicarray class
	added config_vs2013.h for VS 2013
	fixed several permissions-related issues for WinNT 4
	allowShortReads/useBlockingMode are set by default for stdinput now
	added wrapper for atexit()
	changed process::getRealUser/GroupId to getUser/GroupId to match
		setUser/Groupid
	added process::setEffectiveUser/Group methods
	fixed and documented auto-resume behavior in snooze methods
	fixed detection of double-dashed command line parameters without
		values
	removed redundant charstring::rightPad()
	renamed charstring::padString() to charstring::pad()
	added safePrint methods that take unsigned char arguments
	fixed bytestring::findFirst() with unsigned char needle,
		when needle is 0
	fixed bugs in linkedlist::moveBefore/moveAfter
	fixed bugs in singlylinkedlist::removeAll()
	removed arg parameter from thread::setFunction(), added
		thread::setArgument(), and added thread::create(arg)
	changed thread::create() to thread::run()
	wrote lots of example code and updated the programming docs
	removed unused shmfile class
	fixed several LocalFree's that should have been delete[]'s

0.50 - added dictionary::detach and dictionary::getValue(key)
	added xmldom::getNullNode()
	improved xml printing for text nodes
	signalmanager::waitForSignal(NULL) works as expected now
	updated charstring::httpEscape not to escape legal symbols
	added flush() method to stdio classes
	added detection and support for vsnprintf_s
	fixed serviceentry, protocolentry and rpcentry on windows
	updated *entry classes for NULL and uninitialization safety
	implemented filesystem::initialize(fd) for Windows
	updated filesystem::initialize() with NULL and -1 to behave in
		predictable ways now, updated documentation for them too
	abstracted _get_osfhandle calls and added an invalid parameter callback
	updated filedescriptor to use bit fields for all of its flags
	implemented file::changeOwner() for windows
	removed xattrs stuff
	removed SSL-related ifdef's from headers and implemented degenerate
		SSL routines for when SSL isn't supported
	timezone conversion works on windows now
	refactored bytebuffer and stringbuffer to be extent-based
	fixed a subtle stringbuffer with initialcontents bug
	refactored stringbuffer to use bytebuffer::write/appendFormatted
		directly instead of charstring::parseNumber
	implemented dynamicarray and staticarray classes
	refactored build process to use nmake and be compatible with many
		different versions of MS Visual Studio
	updated vsnprintf_s calls for platforms where it's not defined
	added configure test for bool and true/false and definitions for
		platforms that don't define them
	updated timed semaphore waits - if seconds or nanoseconds are negative
		then the timed wait acts like an un-timed wait
	added support for getsockopt with size_t optlen parameter
	fixed strncasecmp on windows when str2 is longer than str1
	xmlsax uses memorymap on Windows now
	fixed file::lockFile() and file::unlockFile() on Windows
	fixed charstring::printf on Solaris 2.5.1
	fixed datetime::getSystemDateAndTime() for Windows without 64-bit
		integers
	fixed potential double-CloseHandle in thread class

0.49 - combined passswdentry and shadowentry classes into userentry class
	updated file::sync() to use FlushFileBuffers directly
	implemented sys::sync(), reboot(), halt() and shutdown() for windows
	implemented various sys::getXXX() methods for windows
	added "detached" option to process::spawn()
	crash-related methods in process class catch SIGABRT, SIGFPE, SIGILL,
		SIGBUS, SIGIOT, SIGEMT and SIGSYS in addition to SIGSEGV now
	shutdown-related methods in process class catch SIGQUIT and SIGHUP
		in addition to SIGINT and SIGTERM now
	on windows, signal classes now support catching, sending/raising
		SIGABRT, SIGFPE, SIGILL, SIGINT, SIGSEGV and SIGTERM and
		sending/raising SIGKILL
	disabled threads outright on OSR5
	fixed threads detection for solaris 2.6
	codetree bails properly at end of string now
	fixed a break-related condition that could cause codetree to loop
		indefinitely
	added support for a beginning-of-line character to codetree
	added support for recursive breaks to codetree
	made charstring::compareIgnoringCase null-safe for platforms that
		don't have str(n)casecmp
	improved Windows support in signal classes
	-Wno-overloaded-virtual is now set when clang is used
	fixed some subtle kqueue-related bugs
	added sys/byteorder.h and htonll/ntohll for solaris 11
	fixed endian-detection macros for solaris 10 and older
	added support for SIGLARM and signalmanager::alarm() on windows
	improved windows implementation of semaphoreset
	added sys::signalsInterruptSystemCalls()
	added process::supportsFork()

0.48 - got directory and file permissions working properly on windows
	added non-static methods to randomnumber
	added support for random_r, lrand48_r, arc4random and CreateGenRandom
	fixed connect-with-timeout error when getaddrinfo is disabled
	updated deployment projects for windows
	replaced compile-tests with link-tests for kqueue, posix_fadvise,
		xattr-functions and various mmap-related functions for minix
		3.3.0 which defines them but doesn't implement them
	added test for -lmthread for minix
	ioctl/FIONBIO is disabled for minix now
	added configurable randomization of hosts for
		inetsocketclient::connect()
	refactored listener class to match paradigms established by
		kqueue, epoll, /dev/poll and poll
	added support for /dev/poll and port_create()
	fixed a few configure-related issues under Cygwin
	renamed the "retrycount" parameter "tries" in the client classes

0.47 - fixed possible null-dereference in xmldomnode::safeAppend
	added charstring::inSetIgnoringCase
	xmldomnode::setAttributeValue does nothing when the null node is
		referenced now
	fixed a codetree bug that could cause indentation to attempt to go
		negative when using an unsigned number
	added a configure test to see if -Wno-format is needed
	configure tests for mlockall/munlockall attempt link now
	added sys/types.h before sys/un.h in sys/un.h test for older freebsd
	implemented stubs for pure virtual methods of client and server classes
		so instances of them could be created to attach already-open
		file descriptors to
	unified usage of select/poll and prefer poll
	pushed all select/poll-related code into listener class
	removed problematic and unused useListener-related methods in
		filedescriptor class
	epoll is used in place of select/poll for systems that support it
	kqueue is used in place of select/poll for systems that support it
	consolidated getpagesize() calls to use sys::getPageSize()
	added detection and support for __vsnprintf for platforms that have
		that instead of vsnprintf
	added cancel and raiseSignal methods to the thread class
	fixed datetime memory leak
	added xmldomnode::clone method to clone a node
	renamed variablebuffer to bytebuffer
	renamed rawbuffer to bytestring
	refactored linkedlist
	added singlylinkedlist class
	added sort, detach, move and insert methods to linkedlist classes
	fixed file::open using O_CREAT without O_EXCL on windows

0.46 - updated filedestination::open to take a permissions parameter
	added deployment projects for windows
	tweaked make.batch install target to install 32-bit files under
		C:\Program Files (x86)
	wrapped waitpid() in process class
	added #define _WINSOCKAPI_ before windows.h includes to prevent
		redefintion of winsock defs later
	fixed O_RDONLY detection on windows in file::openInternal
	fixed shared memory segment sizing error on windows
	fixed O_CREAT without O_EXCL bug on windows
	fixed backwards loaddependencies flag in dynamiclib for windows
	added file::eightDotThree
	added charstring::stripSet and updated charstring::strip to return
		true/false if stripping occurred or not
	removed stubs for unimplemented classes

0.45 - got the directory class working on windows
	got the semaphoreset class working on windows
	implemented passwd/groupentry::getSid and an internal id-name-sid map
		for windows
	removed meaningless groupentry::getPassword
	improved filesystem class implementation for Windows significantly
	added a test for the memorymap class
	got the memorymap class implementation working on Windows
	got the sharedmemory class working on windows
	added support for microseconds to the datetime class
	build-tweaks for mingw32
	added process::spawn that maps more cleanly on windows than fork/exec
	added thread class
	added send/receiveSocket methods to filedescriptor class for systems
		like Windows that distinguish between sockets and other
		file descriptors
	improved file class implementation for Windows
	fixed a bug that caused all connect-with-timeout calls to fail
	fixed a bug that caused permissions::setFilePermissions to fail on
		directories

0.44.1 - configure scripts attempts link for various _r functions now to catch
		cases where they're defined in the headers but not present in
		the library
	tweaks for dlopen/dlsym on linux libc5
	reordered netinet/in.h and netinet/tcp.h includes for linux libc5
	configure script tweaks for OSR500
	extern "C" wrapper around sys/times.h for OSR500
	added xmldomnode::append/insertTag methods

0.44 - fixed inet_aton test to attempt link, not just compile
	fixed vsnprintf test to work on arm linux
	filedescriptor::printf now uses vdprintf, if available, if writes are
		not being buffered, and vasprintf, if available, if writes are
		being buffered
	fixed a memory leak in filedescriptor::printf
	added multiarch detection
	applied Simon Martin's getenv-related patch to reset errno and allow
		getenv to return NULL - fixed a situation where an infinte
		loop could occur if getenv returned NULL and the most recent
		error from another system call was EINTR
	added missing print() for const char *'s in linkedlistutils
	tweaks for OSR505
	a few xmlsax optimization fixes
	renamed *Data methods to *Value in linkedlist and dictionary classes
	removed print methods and unlikely-to-be-used static methods from
		*entry classes
	refactored the static convenience methods of the *entry classes
	refactored xattr code a little to make it smaller
	removed static methods from filesystem class to make it smaller
	removed some static methods from file class to make it smaller
	removed the clientserverfactory class
	slight refactoring of linkedlist and dictionary classes
	various process class fixes for Windows

0.43 - added a workaround for platforms that don't support
		blocking/non-blocking modes for sockets
	added *printf wrappers to charstring, filedescriptor and stringbuffer
		classes
	added test/include for sys/signal.h for platforms that need it
	added support for uadmin with int vs. char 3rd argument
	added snooze and retry if fork fails with EAGAIN
	moved safePrint and printBits methods into the filedescriptor class
	added a test and handling for fsetxattr with non-const third parameter
	"hid openssl" by abstracting SSL types and moving includes into .cpp
		files
	fixed erroneous end-of-buffer address when creating a variablebufferis
		with initial contents
	added option to disable string cache in xmldom class
	added "data" member to xmldomnode class for attaching app-specific data
	improved codetree speed
	fixed a "char" on ARM issue
	fixed a longstanding issue where variablebuffers could get extended
		too much sometimes
	renamed system class to sys to avoid collisions
	added -Werror to configure-time tests for older systems where g++
		doesn't return an error for an implicitly defined function
	removed the rudiments namespace for compatibility with older compilers
	replaced a bunch of unsigned long and long with [u]int(32|64)_t
	removed the timezonefile class
	renamed mutex class to threadmutex to avoid collisions
	wrapped setsid() function
	refactored and simplified dictionary and linkedlist classes
	if thread detection fails it just disables threads now rather than
		erroring out
	thread support is displayed in configure summary
	refactored xmldomnnode::print() methods, added one to write to a	
		filedescriptor
	renamed memorypool methods malloc, calloc and free to allocate,
		allocateAndClear and deallocate to avoid collisions on
		platforms that define malloc and calloc using macros
	fixed lots of cases where const char *'s were being deleted
	renamed *serversocket to *socketserver
	renamed *clientsocket to *socketclient
	added 64-bit build support for Windows
	refactored daemonprocess class and moved its methods into the process
		class

0.42 - made a "char" array in the charstring classh explicitly "signed char"
		for arm and similar platforms where "char" is actually
		"unsigned char"
	fixed variadic macros in codetree class for MSVC
	fixed rpm->rpmbuild in installation docs

0.41 - fixed a few bugs in the codetree class and improved its debug
	added comments to codetree class header
	added new search paths and default prefix for syllable
	initialized an uninitialized variable in clientsocket
	added support for syllable os

0.40 - fixed -pthread annoyance
	added -Werror to default build
	fixed various issues revealed by -Werror
	fixed hostentry::getAddressString() for numbers greater than 127
	fixed bugs that could lead to a crash when using the hostentry class
		with NULL hostnames
	reads that error out with EAGAIN are treated as successful reads of 0
		bytes now
	all sockets are manually set to blocking mode after creation now
	sockets created by accept() are set to the blocking/non-blocking mode
		of the socket that was accepted on
	fixed charstring::safeCopy to copy the NULL terminator
	made charstring::copy NULL-safe
	refactored windows make.bat script
	made crypt class salt NULL-safe
	lots of small tweaks to support linux/libc5-based systems

0.39 - filedescriptor::getPeerAddress returns NULL now for non-inet sockets
	added charstring::safeCopy methods
	made regularexpression::getSubstring* methods return const char *'s
	fixed a bug where xmldomnode::deleteAttribute() on a non-existent
		attribute name would crash
	added xmldomnode::getTree and xmldomnode::print methods
	added codetree class
	fixed a longstanding memory leak in dictionary::clear()

0.38 - included some contributed updates to chat, charstring and modemclient
	added several more wrappers to system class
	refactored configure/make for non-gnu make compatibility
	upated passFileDescriptor to dynamically allocate the control buffer
		for OS X 10.7 whos CMSG_LEN ultimately calls a function
	updated msvc build to create Release code rather than Debug by default
	added posix analogs (rewind, skip and read) to directory class
	updated filedescriptor debug so debugging of the buffering can be
		enabled/disabled
	integrated patches from Neowiz for:
		using -g3 if available when --enable-debug is specified
		testing the result of getaddrinfo for any non-zero result
			when checking for EINTR, not just EAI_SYSTEM,
			and also to reset errno between tries
		clientsocket to use WSAConnect and friends on windows
		disabling code that uses AF_UNIX sockets outright for windows
		inetserversocket::listen() to reuse addresses 
	added process::exitImmediately
	updated error::getErrorString() to be thread safe when it uses
		strerror_r or strerror_s internally
	fixed charstring::isInteger/isNumber to return false when the string
		passed in is either - or . without any actual number
	changed longs in snooze class to uint32_t's

0.37 - updated logger to exclude : if header isn't supplied
	updated logger not to print double-returns after each log message
	added file::createPipe()
	fixed net-to-host and host-to-net byte order conversions for 64-bit
		integers on windows
	fixed charstring::copy that I'd broken in 0.36
	fixed missing [] in a delete in filedescriptor::read() with terminator
		that could cause leaks and corruption
	fixed a leak in filedescriptor::read() with terminator that could
		occur when it fell through with an error, timeout or 0-byte
		read
	applied Georgiy Kirichenko's fix to the safePoll call in
		filedescriptor::readFileDescriptor() - swapped true/false
		arguments so it would wait using POLLIN
	added xmldomnode::getPosition()
	fixed display of seconds from datetime::getString()
	fixed optimum buffer size calculation in xmlsax
	fixed several dlclose()-related bugs

0.36 - various fixes for SCO and Ultrix
	renamed some methods to avoid collisions with macros
	modified methods that take or return internal structures to take or
		return void pointers instead
	added charstring::replace methods
	renamed all .C files to .cpp for windows
	added msvc project and got most classes building natively on windows

0.35 - added ( to set of chars to capitalize after
	added methods to control whether semaphoreset operations are retried
		after they have been interrupted by a signal
	added charstring::findFirstOrEnd
	added character::inSet

0.34 - fixed some STATFS/FSTATFS that needed to be CHAR-versions of the calls
	added test for utime and utime.h
	utime is used on platforms that don't have utimes
	updated process class methods to return -1 and set ENOSUPP for
		process-group related calls on systems that don't have the
		concept of process-groups
	added a call to select() instead of poll() for file-descriptor passing
		for systems that don't support poll()
	added tests for timespec in various header files
	added test for dlopen
	updated configure script not to outright disable classes if the
		functions they're dependent on aren't found, but rather for
		the methods to return erros and set errno to ENOSYS
	added netapi32 on mingw
	updated vfstab detection to reflect minix/haiku-style rather than just
		haiku
	moved non-member variables and methods into daemonprocess class and
		its private class
	updated xmldomnode to output xml entities rather than raw characters
	fixed a bug that caused numeric xml entities greater than 127 to get
		set to 127
	updated mutex class to show a consistent interface on all platforms
	updated configure script to detect pthreads properly on minix
	cleaned up semaphoreset class
	lots of mingw32 compatibility fixes
	wrapped exit() in process class

0.33 - removed configure tests for strlcpy and strlcat
	added test for pvt->_translatebyteorder to hostToNet/netToHost for
		64bit numbers
	made filedescriptor::hostToNet/netToHost public and static, moved
		translatebyteorder flag test out of them
	serviceentry and inet*socket classes use
		filedescriptor::hostToNet/netToHost rather than htonl/htons
	added charstring::printBits methods
	xmlsax class uses optimizations even when not using mmap now
	updated linkedlist class a good bit
	applied Renat Sabitov's logger patch
	fixed some bugs where filesystem.C wouldn't compile on platforms where
		statfs can return some strings
	haiku port
	implemented bswap for systems with nothing like it
	added #ifdef's in configure script for all header files
	fixed detection of several things on modern openbsd systems
	added definitions of (u)int(8|16|32|64)_t for systems that don't have
		them
	added randomnumber::getSeed() that uses /dev/urandom if available
	environment class prefers putenv to setenv to work around a memory
		leak that can occur when using setenv to set an environment
		variable over and over
	fixed 2 memory leaks in environment class
	fixed memrchr and strpbrk tests in configure script
	fixed a logger dependency on the permissions class in features.mk.in
	updated environment class to use malloc and free
	fixed reference-after-free by putenv in environment class
	applied patches from Renat Sabitov
	updated signalhandlers to have (void *)(int) signature
	added charstring::subString without an end parameter
	applied patch by Claudio Freire
	changed several %lf's to %Lf's in charstring long double parsers
	fixed uninitiaized nodename/nodevalue in xmldomnode
	fixed unterminated buffer after clear in stringbuffer
	removed "rebuild" target from all Makefiles
	added charstring::capitalize method
	made stringbuffer::terminate append a \0 unconditionally
	made stringbuffer::clear() terminate the buffer at position 0
	fixed a bug where xmldomnode::getFirstXXX() could crash if there was
		no first XXX
	added xmldomnode::moveChild
	fixed uninitialized _grp in groupentry class
	regularexpression class uses pcre_free rather than delete to free
		pcre_extra block now
	fixed printf %lld's in timezonefile class
	made several unsigned shorts use uint16_t in charstring class
	changed integerLength to return uint16_t rather than int
	added man page to rpm spec file

0.32 - xmlsax does "sequential" and "only-once" hints when reading the file
	xmlsax/dom classes use optimal read and write buffers now
	added DESTDIR= to rudiments.pc.in
	added charstring::httpUnescape
	fixed a bug in datetime that would cause TZ to remain after doing a
		timezone conversion if TZ was unset to begin with
	fixed a bug in regularexpression that could cause a double-free

0.31 - added OSSwapLittleToHost/OSSwapHostToLittle for Mac OS X
	modified environment::clear() for mac os x
	regularexpression wasn't setting the match count correctly, fixed that
	added charstring::subString() method
	added missing lingerOnClose(), fixed dontLingerOnClose()
	added base64 encode/decode methods
	fixed charstring::parseNumber() for unsigned int's
	added /opt/csw to configure script's search path
	fixed a memory leak in xmldom::unCacheString()

0.30 - changed commandline::value() to commandline::getValue()
	fixed a memory leak in dictionary
	added setHour/Minute/Second/etc. methods to datetime
	fixed readdir_r vulnerability
	added support for either "-arg value" or "--arg=value" to commandline
	added support for break and control characters to chat class
	added print method to environment class
	added close-on-exec methods to filedescriptor class
	added clear method to environment class
	made all methods in environment class static
	added wrappers for strspn/strcspn/strpbrk functions to charstring class
	fixed bug where datetime would set wrong timezone if it is initialized
		with a combined zone name like PST8PDT
	added directory::getChildCount()
	added datetime::validDateTime()
	xmldom class stores all strings found in the xml file in a stringlist
		and stores pointers to them in the xmldomnodes to reduce
		memory usage in xml files that have lots of duplicated strings
	added configure tests for dirfd/DIR.dd_fd/DIR.d_fd 
	initialize addrinfo struct pointer to NULL in inetclientsocket.C

0.29 - added check for whether SSL_read/write takes void * or char * parameter
	added _XOPEN_SOURCE to filedescriptorincludes.h for sys/socket for irix
	added collapse argument to charstring::split
	added configure test for -Wall
	switched lots of:
			char	a[charstring::length(b)];
		to:
			char	*a=new char[charstring::length(b)];
			...
			delete[] a;
		to improve compiler compatibility
	removed #ifdef __GNUC__ around static variable definitions, I'll add
		#ifndefs for compilers that don't allow them (like SCO's) if
		necessary
	added -D__EXTENSIONS__ to CPPFLAGS
	added charstring::escape/unescape
	defaulted zeropadding to 1 rather than 0, I'm not sure if it's a bug
		in glibc or not, but printf("%0*lld\n",0,(int64_t)0); prints
		nothing rather than 0, but printf("%0*ld\n",0,(int32_t)0);
		prints 0.  Using 1 instead of 0 for the number of 0's works
		in all cases.
	solaris's strchr/strrchr return const char *,
		so I made charstring::findFirst/findLast return const char *
	use snprintf's rather than sprintf's now
	uses fchmod/fchown rather than chmod/chown now
	made envelope classes out of all classes
	added a configure test for ftok that takes a char * argument
	switched a bunch of AC_TRY_LINK's to AC_TRY_COMPILE's in configure
		script
	configure script does less work looking for getpwnam_r and cousins now
	if pthread libs can't be found, configure also tries just plain -pthread
	added #ifdefs for individual POSIX_FADV_* and MADV_* macros
	in configure script, for cygwin, tests for w32api files and functions
		are omitted
	configure tests for strtoll/strtoull now
	configure tests for caddr_t types for all mmap-related functions
		individually now
	unsupported memorymap methods return false now rather than not existing
	added -pthread when compiling as well as linking
	fixed a time-remaining-related bug in snooze class
	fixed a bug where the date/time string buffer could easily be overrun

0.28.2 - filedescriptor desctructor removes the read buffer now

0.28.1 - fixed a bug in bufferedWrite()

0.28 - added strtou(l|ll) wrappers to charstring class
	added append(long|unsigned long|double...) methods to charstring class
	implemented ignoreParityErrors in serialportprofile class
	added baud methods to serialportprofile class that take string args
	xmldom::parseString() works now (properly calls xmlsax::parseString())
	regularexpression class zero's it's expression during init now to
		prevent a segfault when it's freed
	fixed several timezone-related bugs
	added modem client/server
	made default parseNumber base 10 instead of 0
	INSTALL is moved to INSTALL.txt for OS X now
	added detachBuffer, detachString to variablebuffer, stringbuffer
	added split to charstring class
	added shmfile class
	moved sleep methods into snooze class, changed sleep() to macrosleep()
	cleaned up xmlsax class a bit
	fixed problem where xml comments had ! prepended to them
	added write()/append() methods for all primitive types to
		variablebuffer/stringbuffer classes
	added parseNumber()/integerLength() methods for all primitive types to
		charstring class
	added variables() to environment class
	regularexpression::match() fails immediately if string is NULL now
	#ifdef'ed out OCRNL, ONOCR, ONLRET in serialportprofile for mac os x
	added process class
	updated config.guess
	uses c++ casting operators now
	fixed a bunch of const-related messes
	added rudiments namespace
	retired errorhandler class
	implemented copy constructors, = operators for many classes
	charstring class doesn't use strndup or strdup anymore so
		strings created using malloc aren't freed using delete[]
	removed errant connect() definitions from inetclientsocket,
		unixclientsocket
	added WNOHANG back to waitpid() call in daemonprocess class and made
		sure the call gets restarted if it's interrupted by a signal
	added .PHONY makefile flag, removed INSTALL -> INSTALL.txt hack
	added /usr/sfw to configure scripts search paths
	added error class
	added /sw to configure script search paths
	added -Wno-long-double if system supports it
	moved inetserversocket::getClientAddress() to
		filedescriptor::getPeerAddress()

0.27 - added (slightly modified) pkgconfig stuff from Dolphpower's pkgconfig
		patch
	fixed comment detection in xmlsax
	STRIPPROG is set before calling install-sh now
	made return value of pass/receiveFileDescriptor a bool
	fixed filedescriptor::safeRead(); when trying to read more bytes than
		are available, it now returns the number of bytes read rather
		than 0
	updated rudiments-config and pkgconfig scripts to include pthreads/ssl
		libs and cflags
	added optional ssl support to filedescriptor class and all child classes
	added optional pcre support
	re-engineered regular expression class
	xmlsax class uses mmap if it's available
	inet/unix client/server sockets inherit from generic socket class now
	added blocking/non-blocking mode switches to filedescriptor/socket class
	added support for connect with timeout to socket client classes
	changed (void *) cast to (const void *) for setsockopt calls
	added check for (const void *) vs. (const char *) for setsockopt calls
	added setDelimiter method to parameterstring class
	added support for cygwin >=1.5.7-1
	added search for gthreads to configure for SCO
	added netToHost/hostToNet virtual methods to fildescriptor class,
		override them in datatransport class to call ntohl/ntohs
		and htonl/htons, removed a bunch of read/write methods from
		datatransport
	added primitve xml path methods
	added static getLength() method to charstring class
	added wait() with timeout methods to semaphore class
	added chown/fchown,unlink,rename,link,symlink,readlink,fsync,fdatasync,
		utimes,mknod,mkfifo,mkstemp,access,xattr-related function
		wrappers to the file class
	added basename/dirname methods and ftok wrapper to file class
	added a few pathconf wrappers to file class
	added dup/dup2 wrappers to filedescriptor class
	added directory class
	removed static methods that took an "int fd" from file class
	added device class
	added intervaltimer class
	reworked filedescriptor/client/server heirarchy to reduce size of
		library's data segment
	added test for crypt.h
	made charstring/rawbuffer classes NULL-safe
	added zero method to rawbuffer class
	no stripping is done at compile, link or install time now
	added getMonthName/Abbreviation to datetime class

0.26.3 - updated spec file to work on suse 9.0
	config.mk uses includedir instead of incdir now
	docs are installed in ${datadir}/doc/rudiments instead of
		${prefix}/doc/rudiments now

0.26.2 - fixes for Mac OS 10.2 and Fedora Core 1 compatibility
	timezonefile class build is now independent of datetime

0.26.1 - a couple of build fixes
	added shadowentry, serviceentry and rpcentry classes and test programs
	reorganized *entry class code a bit to generate smaller code
	uses -pipe compilation flag now if possible
	-fomit-frame-pointer -fno-exceptions are used now, debugging
		build just uses -fno-exceptions
	rpc/rpcent.h is included if necessary for getrpcbyxxx_r
	rpc/rpc.h is included if necessary for getrpcbyxxx_r
	pthread.h is included for xxxentry classes now no matter what
	shadowentry is disabled on systems that have no shadow support
	added filesystem class
	added test for s_warn, s_inact, s_expire and s_flag in struct spwd and
		compile in support for them if found in shadowentry class
	applied Taguchi Takeshi's listener and inetsocketclient patches
	check for shmat()!=-1 instead of shmat()>-1 in sharedmemory class now
		as a memory address could actually be larger than 2^31-1 (or
		2^64-1), appear to be negative and still be valid as long as
		it's not -1
	fixed rpm 4.1 doc-install complaints
	added --enable-debug option to configure, only 1 library is built now
	fixed xmldomnode::getNextTagSibling()
	reworked xmldom relationship in dtd class
	fixed ssize_t safeSelect() -> int safeSelect() declaration
	updated config.sub, config.guess and ltmain.sh
	made a bunch of methods return bool instead of int
	renamed string class charstring to avoid stl collision

0.25 -	doc's mention genericsocket class now
	configure script figures out rpm build directory better
	added rudiments-config script
	Makefile.in's are just Makefile's now
	read/write methods return ssize_t's now
	added logger class and logdestination classes
	implemented totally different client/server class structure
	renamed lots of methods to just read(),write(),open(),close(),etc.
	added xmlsax,xmldom,xmldomnode class
	added errorhandler class
	made other classes report errors through the errorhandler class
	added SONAME_VERSION_INFO and WITH_LIBTOOL variables to config.mk (fmw)
	added the debian directory (fmw)
	added memorypool class
	made lots of (char *)'s into (const char *)'s.
	made lots of methods const methods
	inlined lots of methods
	used autoconf/autoheader 2.53
	made libtool build the default
	made build process cross-compile-friendly
	added --with-system-libtool option to configure (fmw)
	added fileproperties class (wrapper for stat/lstat)
	added conectiondata class for use with clienttransport children
	added right/left justify and center methods to text class
	added --debug-profiling-libs to rudiments-config
	added stringbuffer class, made errorhandler use it
	added --enable-small-code and --with-inlines to configure script
	added -fno-exceptions to default CXXFLAGS
	added variablebuffer class
	added dtd class
	uses reentrant getpw/getgr functions if available
	uses reentrant gethostbyname/getprotobyname functions if available
	uses localtime_r function if available
	uses static instead of dynamically allocated variables now where
		possible
	configure defines -DSMALL_CODE=1 so routines can be written one way
		or the other
	moved fileproperties class into file class
	incorporated matthias saou's spec file instead of mine, added devel
		package to it
	removed make rpm target and associated cruft
	removed kdevelop files
	uses RUDIMENTS_INLINE instead of just INLINE to avoid conflicts
	added slackware packaged build target
	added support for gcc-3.2.2
	added a features.mk file so features could be compiled in/out
	moved text class stuff into string class
	removed unnecessary -pedantic from CXXFLAGS
	added linkedlist/dictionary classes, other classes use them instead of
		implementing their own lists/dicts
	added environment class
	datetime class handles timezones properly now
	added mutexes to datetime, *entry classes
	added read/write with timeout methods to filedescriptor/datatransport
	inetsocketclient uses getaddrinfo_r now if possible

0.24 -	fixed poor linger implementation
	added options for SO_REUSEADDR
	added simple/complex port initilization methods to server class
	added options to server/client class to automatically retry reads that
		were interrupted by signals
	spec file takes libdir, incdir, prefix and exec_prefix into account
	added support for file descriptor passing over unix sockets
	server/client classes split into genericsocket, serversocket, 
		clientsocket classes
	serversocketpool class added which can listen on an 
		arbitrary number of ports
	make generates a profiling version of librudiments.a now
	test programs are statically linked now
	added create/attach and createOrAttach methods to semaphoreset class
	semaphoreset correctly cleans up now
	include files moved to rudiments subdir of incdir
	in genericsocket class, reads which didn't get all of the data but
		did not encounter an error keep trying until all the data
		is read now
	safeRead handles count>SSIZE_MAX and eof conditions correctly now
	setuid/setgid were replaced with setreuid/setregid
	added #include <netinet/in.h> and defined _XPG4_2 around 
		#include <socket.h> for solaris8
	tests don't build by default now
	clientsocket correctly checks for connect() error now

0.23 -	fixed stupidity where semaphoreset destructor was trying to
		individually delete all of the semaphores in a set rather
		than just the whole set at once

0.22 -  added support for "make rpm"
	added lingerOnClose and disconnectClient calls to svr.C test program
	check for ld -G vs ld -shared

0.21 -	got rid of some compiler warnings
	made client/server write/read methods use unsigned long/short
	added strip commands to text class
	made configure script take --includedir and --exec-prefix into account
	added return values for disconnectClient(), stopListening() and 
		closeConnection() methods in client/server classes
	added linger socket options to server/client classes

0.20 -	changed DYNAMICAR to use ld -G -o instead of g++ -Wl,-G -o, it was
		putting an undefined main symbol in the library which java
		doesn't like
	tries=0 in client class causes the client to loop infinitely now
	changed daemon class name to daemonprocess to avoid conflict with
		daemon function in unistd.h
	made daemonprocess signal handlers pointers and handled them as such;
		not doing so and using ld -G -o to create the library caused 
		any program using the daemonprocess class to crash
	client class reports a "failed to connect" error only after it's tried
		for the number of times it's supposed to try, not each time
	added server/client programs to the test suite

0.19 -	added test suite
	simplified random number scaling code
	added negative number tests to random number tester
	changed randomnumber to prefer rand/srand over nrand48/srand48
		because SCO's RAND_MAX is 2^15-1 but it's nrand48 returns
		a number between 0 and 2^32-1 which caused scaling errors
		but it's rand returns a number between 0 and 2^15-1.
	added a getRandMax method to the randomnumber class
		
	

0.18 -	getUnixServerPort() returns NULL now if the unix socket was never
		opened in server class
	initialized serverportin in server class
	initialized serversock in client class
	made a bunch of methods static 
	rolled casechange, trim and encoding classes into text class
	totally changed random number class
	added setUsername/setGroupname methods to semaphoreset class
	daemon class handles SIGCLD by waiting on dead child processes 
		on it's own now
	changed several method names in the server class
	some tweaks for microsoft platform compatibility
	added a permissions class
	changed some method names in the signalhandler class
	added documentation to all of the header files
	added signalset and signalmanager classes
	changed signalhandler.h/C to signalclasses.h/C
	added programming examples to documentation
	added isNumber/isInteger methods to text class, made them both 
		recognize negative numbers
	make clean now removes the .pics directories that Konqueror makes


0.17.1 - quick-fix: closeServerSocket() doesn't unlink the unix socket anymore

0.17 -  added some new methods to the regularexpression class
	added datetime class

0.16 -  got rid of some unnecessary strlen()'s
	fixed some "I wasn't such a good programmer back then" errors
	removed idiotic readFromXXX(char *buffer) functions which had no
		length parameters from client/server classes
	added methods to daemon class so it can run as a given user/group

0.15 -  tweaks for gcc-2.96

0.14 -	added more writeToServer/writeToClient and readFromServer/readFromClient
		methods for writing/reading non-character data
	added chdir("/") and umask(0) to detach() method in daemon class
	closing a unix socket unlinks the associated file now
	added socket option SO_REUSEADDR to inet sockets in server class

0.13 -	removed redundant -fpic and unnecessary -DPIC
	added #include <sys/types.h> to regularexpression, sharedmemory and
		semaphoreset classes
	allowed c++ to be used instead of forcing g++
	changed check for integer signal handler type
	fixed a few memory leaks
	preliminary CYGWIN support
	added detach method to daemon class, must be explicitly called for the
		daemon to detach from the controlling tty.

0.12 -	added Unix Domain support to server and client classes
	removed the extern "C" { #undef __cplusplus ... #define __cplusplus }
		stuff, it caused more trouble than it overcame
	build improvements
	error messages go to stderr now and include the strerror() of the
		error number
	detect signal handler function signature
	changed signal handler function signature to void handler() from
		void handler(int) for greater compatibility
	added randomnumber class

0.11 -	added sharedmemory class
	removed select from the readfromfileptr routine 
		(wasn't supposed to be there anyway)
	made wait() and signal() semaphoreset class members not use SEM_UNDO
		by default and added waitWithUndo() and signalWithUndo() 
		members

0.10 -  added select before accept in server class

0.9 -	documentation improvements and fixes
	added -fpic -fPIC -DPIC to CXXFLAGS
	added extern "C" and #undef/#define __cplusplus in various places
	added modes to install scripts
	fixed the server class to allow connections using INADDR_ANY

0.8 -	build fix: made calls to "test" more compatible

0.7 -	cleaner build
	client::openConnection now tries to connect to all the addresses that
		a hostname resolves to before giving up
	client::openConnection fails gracefully if gethostbyname or
		getprotobyname fails

0.6 -	removed LDFLAGS from config.mk
	general Makefile maintenance

0.5 -	documentation installs now
	detection of union semun at configure time
	reingineered Makefiles to be frienlier to non-gnu make

0.4 -	more robust build/install/uninstall

0.3 -	configure based install. 
	Reorganization of includes.
	make install/uninstall directives.
	Got rid of RCS.

0.2 -	bug fixes.
	
0.1 -	First release.
